From a51c3c434c2b6d32240b759a775042cdb1ce8925 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Tue, 22 Jul 2025 15:37:14 +0200 Subject: [PATCH 01/10] Try parse irOptimized --- lib/.DS_Store | Bin 0 -> 6148 bytes lib/bytecode_verification/parse_json.rs | 172 ++++++++++++++- lib/state/contract_state.rs | 196 ++++++++++++++++-- lib/state/forge_inspect.rs | 135 +++++++----- lib/web3.rs | 7 +- src/dvf.rs | 22 +- src/gentest.rs | 11 +- .../script/Deploy_StaticInMapping.s.sol | 27 +++ tests/Contracts/src/StaticInMapping.sol | 23 +- 9 files changed, 515 insertions(+), 78 deletions(-) create mode 100644 lib/.DS_Store create mode 100644 tests/Contracts/script/Deploy_StaticInMapping.s.sol diff --git a/lib/.DS_Store b/lib/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..dc659d92537e222a21ee3fbe352d61bd0f908420 GIT binary patch literal 6148 zcmeHK-AcnS6i&A3GKSC#6)ywc4xDZb#G6v*3s}($mD$p%#oCOuTQA0-m-<3JiqGRY zNeT{kE#l6Bv&v@ zoZWMk=0Ti}r@A1H#*lJ%6Q_|XJT*(BOxOA*AX=g|a`qRCZbuIKy=6x(PESDZ_Xf*l zOY9vUon4MzlGjwd88SI=t!2kz1@EBPwaoo#nyB;%JXLm;MMw+~1H=F^u;~oglR>mM zod{Y#F+dFbU;y_A2@TP;SQ^w@2XuIS#&`n}1$2B%AWDm_#nK=|K)5LdG^N}=F}NuQ zzqEO-#nPZDXI#$=sDOaJatQzf_mKk~G;xVK, + type_defs: &Types, + exported_ids: &Vec, + storage: &mut Vec, + storage_layout: &StorageLayout, + types: &mut HashMap, + ) { + for source in sources.values() { + if let Some(ast) = source.ast.clone() { + for node in &ast.nodes { + Self::find_static_mapping_writes_helper( + sources, + node, + type_defs, + exported_ids, + storage, + storage_layout, + types, + ); + } + } + } + } + + fn find_static_mapping_writes_helper( + sources: &BTreeMap, + node: &EAstNode, + type_defs: &Types, + exported_ids: &Vec, + storage: &mut Vec, + storage_layout: &StorageLayout, + types: &mut HashMap, + ) { + if node.node_type == NodeType::ContractDefinition + && node.id.is_some() + && !exported_ids.contains(&node.id.unwrap()) + { + return; + } + + // variables are typically assigned in function definitions + + // if node.node_type == NodeType::FunctionDefinition { + // println!("MMMH OOOK: {:?}", node.node_type); + // } + + if node.node_type == NodeType::FunctionDefinition && node.id.is_some() { + let Some(body_node) = &node.body else { + return; + }; + + let Some(stmts) = body_node.other.get("statements") else { + return; + }; + + for stmt in stmts.as_array().unwrap().iter() { + //Looking for Assignment nodes + if stmt["nodeType"] != "ExpressionStatement" { + continue; + } + + let expression = &stmt["expression"]; + if expression["nodeType"] != "Assignment" { + continue; + } + + // println!("\nAt this point storage is {:?}", self.id_to_ast); + // let mapping_name = String::new(); + // let mapping_type = String::new(); + + // find left side of the assignment + let left_hand_side = &expression["leftHandSide"]; + let Some(base_expression) = &left_hand_side.get("baseExpression") else { + continue; + }; + if base_expression["nodeType"] != "Identifier" + || !base_expression["typeDescriptions"]["typeIdentifier"] + .as_str() + .unwrap() + .starts_with("t_mapping") + { + continue; + } + // get the type of the mapping keys and values + let mapping_type = base_expression["typeDescriptions"]["typeIdentifier"].to_string(); + println!("base expr: {:?}, mapping_type {}", base_expression, mapping_type); + let re = regex::Regex::new(r"t_mapping\$_(.*)_\$_(.*)_\$").unwrap(); + let Some(caps) = re.captures(&mapping_type) else { + panic!("Failed to extract mapping type: {}", &mapping_type); + }; + let key_type = caps[1].to_string(); + let value_type = caps[2].to_string(); + + // let variable_ast_id = base_expression.get("referencedDeclaration"); + let Some(mapping_label) = base_expression["name"].as_str() else { + continue; + }; + + // get the key string + let Some(index_expression) = &left_hand_side.get("indexExpression") else { + continue; + }; + let Some(key_str) = index_expression["arguments"][0]["value"].as_str() else { + continue; + }; + // let key_str = index_expression["arguments"][0]["value"].as_str().unwrap().to_string(); + + let mapping_entry_type = format!( + "t_mapping_entry" + ); + types.insert( + mapping_entry_type.clone(), + TypeDescription { + encoding: String::from("mapping_entry"), + label: "POOO".to_string(), + number_of_bytes: 32, + base: None, + key: Some(key_type), + value: Some(value_type), + members: None, + }, + ); + // @note here we don't know the mapping slot unless we parse the AST for it. + // For efficiency reasons, we figure out the mapping slot later using the storage layout from forge inspect + storage.push(StateVariable { + contract: String::from(""), + label: format!("{}.{}", mapping_label, key_str), + offset: 0, + slot: U256::from(0), + var_type: mapping_entry_type.clone(), + }); + + println!("Inserted label {}", format!("{}.{}", mapping_label, key_str)); + println!("Inserted type {}", mapping_entry_type); + } + } + + //Recurse through the AST + for subnode in &node.nodes { + Self::find_static_mapping_writes_helper( + sources, + subnode, + type_defs, + exported_ids, + storage, + storage_layout, + types, + ); + } + } + /// Parses the AST of a contract for descriptions (name and type) of variables that are directly /// written to storage using assembly. /// Creates a set of StorageVariables and TypeDescriptions that can be used by ContractState. @@ -1424,8 +1580,6 @@ impl ProjectInfo { build_cache: Option<&String>, libraries: Option>, ) -> Result { - println!("Libraries are {:?}", libraries); - let build_info_path: PathBuf = match build_cache { Some(s) => PathBuf::from(s), None => Self::compile(project, env, artifacts_path, libraries)?, @@ -1631,6 +1785,16 @@ impl ProjectInfo { &mut types, ); + // Self::find_static_mapping_writes( + // &build_info.output.sources, + // &type_defs, + // &exported_ids, + // &mut storage, + // &contract.storage_layout, + // &mut types, + // ); + // println!("Storage after finding static mappings writes: {:?}", storage); + let immutables = Self::extract_immutables(&deployed_bytecode, &id_to_ast); // If we are not using build_cache then delete the tmp files diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index 458385c4..abc09995 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -5,14 +5,19 @@ use std::str::FromStr; use alloy::primitives::{keccak256, Address, B256, U256}; use prettytable::Table; +use regex::Regex; +use sha3::{Digest, Keccak256}; use tracing::{debug, info}; use crate::dvf::config::DVFConfig; use crate::dvf::parse; use crate::dvf::parse::DVFStorageEntry; use crate::dvf::parse::ValidationError; +use crate::state; use crate::state::contract_state::parse::DVFStorageComparisonOperator; -use crate::state::forge_inspect::{ForgeInspect, StateVariable, TypeDescription}; +use crate::state::forge_inspect::{ + ForgeInspectIrOptimized, ForgeInspectLayoutStorage, StateVariable, TypeDescription, +}; use crate::utils::pretty::PrettyPrinter; use crate::web3::{get_internal_create_addresses, StorageSnapshot, TraceWithAddress}; @@ -37,6 +42,11 @@ pub struct ContractState<'a> { pub types: HashMap, // Storage Index of Mapping -> (Key, derived storage slot) pub mapping_usages: HashMap>, + + // Mapping name -> List of static-type keys + // TODO name + pub mapping_label_to_sv_index: HashMap, + // The contract address pub address: Address, // Print human readable @@ -49,6 +59,7 @@ impl<'a> ContractState<'a> { state_variables: vec![], types: HashMap::new(), mapping_usages: HashMap::new(), + mapping_label_to_sv_index: HashMap::new(), address: Address::from_str(address).unwrap(), pretty_printer, } @@ -59,6 +70,7 @@ impl<'a> ContractState<'a> { state_variables: vec![], types: HashMap::new(), mapping_usages: HashMap::new(), + mapping_label_to_sv_index: HashMap::new(), address: *address, pretty_printer, } @@ -85,6 +97,8 @@ impl<'a> ContractState<'a> { if !found { self.state_variables.push(sv.clone()); } + // self.mapping_label_to_sv_index + // .insert(sv.label.clone(), self.state_variables.len() - 1); } fn add_type(&mut self, var_type: &String, type_desc: &TypeDescription) { @@ -97,14 +111,99 @@ impl<'a> ContractState<'a> { } } - pub fn add_forge_inspect(&mut self, fi: &ForgeInspect) { - for (var_type, type_desc) in fi.types.iter() { + /// Given the contract IR optimized output, extracts the mapping assigments with static keys + fn add_static_key_mapping_entries(&mut self, fi_ir_optimized: &ForgeInspectIrOptimized) { + // self.mapping_usages + // .entry(U256::from_str("1").unwrap()) + // .or_insert_with(HashSet::new) + // .insert((String::from("0x"), U256::from_str("90833963927758799113719025603677964796474124828269229747399379044572608754728").unwrap())); + // return; + // let mut assignments = Vec::new(); + let lines: Vec<&str> = fi_ir_optimized.ir.lines().collect(); + let mut last_key: Option = None; + let mut last_slot: Option = None; + + let re_mstore = + Regex::new(r#"mstore\(([^,]+),\s*/\*\*.*?"(?:.*?)"\s*\*/\s*(0x[0-9a-fA-F]+)\)"#) + .unwrap(); + let re_sstore = Regex::new( + r#"sstore\(keccak256\([^\)]*\),\s*/\*\*.*?"(?:.*?)"\s*\*/\s*(0x[0-9a-fA-F]+)\)"#, + ) + .unwrap(); + + for line in &lines { + if line.trim_ascii_start().starts_with("///") { + continue; + } + + println!("Consider line: {:?}", line); + if let Some(caps) = re_mstore.captures(line) { + let mem_location = caps.get(1).unwrap().as_str(); + let val = caps.get(2).unwrap().as_str(); + + println!("Captured mem_location {:?} val {:?}", mem_location, val); + + match mem_location { + "0x20" => last_slot = Some(val.to_string()), + _ => last_key = Some(val.to_string()), + } + } + + if let Some(caps) = re_sstore.captures(line) { + if let (Some(ref last_key_), Some(ref last_slot_)) = (last_key.clone(), last_slot.clone()) { + println!("Captured key string {:?} slot string {:?}", last_key_, last_slot_); + let key_bytes = + hex::decode(last_key_.trim_start_matches("0x")) + .unwrap(); + let slot_bytes = + hex::decode(last_slot_.trim_start_matches("0x")) + .unwrap(); + + let mut padded_key = vec![0u8; 32]; + let mut padded_slot = vec![0u8; 32]; + + padded_key[32 - key_bytes.len()..].copy_from_slice(&key_bytes); + padded_slot[32 - slot_bytes.len()..].copy_from_slice(&slot_bytes); + + let mut keccak_input = vec![]; + keccak_input.extend_from_slice(&padded_key); + keccak_input.extend_from_slice(&padded_slot); + + // let mut hasher = Keccak256::new(); + // hasher.update(&keccak_input); + // let entry_slot = hasher.finalize(); + // println!("keccak input {:?}", keccak_input.clone()); + let entry_slot = U256::from_be_bytes(keccak256(keccak_input).into()); + // let entry_slot_hex = format!("0x{}", hex::encode(entry_slot)); + + let last_slot_u256 = U256::from_str_radix(last_slot_.trim_start_matches("0x"), 16).unwrap(); + + self.mapping_usages + .entry(last_slot_u256) + .or_insert_with(HashSet::new) + .insert((last_key_.clone(), entry_slot)); + + // Reset key (next store might use new key) + last_key = None; + } + } + } + } + + pub fn add_forge_inspect( + &mut self, + fi_layout: &ForgeInspectLayoutStorage, + fi_ir_optimized: &ForgeInspectIrOptimized, + ) { + for (var_type, type_desc) in fi_layout.types.iter() { self.add_type(var_type, type_desc); } - for sv in &fi.storage { - self.add_state_variable(sv); + for state_variable in &fi_layout.storage { + self.add_state_variable(state_variable); } + + self.add_static_key_mapping_entries(&fi_ir_optimized); } fn memory_as_string(memory: &Vec) -> String { @@ -146,6 +245,7 @@ impl<'a> ContractState<'a> { let mut key: Option = None; // Mapping storage index, only meaningful when key is Some let mut index: U256 = U256::from(1); + for log in trace_w_a.trace.struct_logs { // Boring state if log.stack.is_none() { @@ -182,10 +282,30 @@ impl<'a> ContractState<'a> { depth_to_address.insert(log.depth + 1, depth_to_address[&log.depth]); } + // handle static-type mapping keys + // if log.op == "SSTORE" { + // // let value = stack[stack.len() - 2]; + // let slot = stack[stack.len() - 1]; + // println!("SSTORE found slot: {:?}", slot); + + // let target_slot = U256::from_str("78541660797044910968829902406342334108369226379826116161446442989268089806461") + // .expect("invalid slot number"); + + // if slot == target_slot { + // println!("SSTORE is storing at slot corresponding to static-type key!"); + // key = Some( + // "0000000000000000000000000000000000000000000000000000000000000001" + // .to_string(), + // ); + // index = U256::from(0); + // } + // } + if depth_to_address[&log.depth] == self.address { if let Some(key_in) = key { let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { + println!("Of course mapping usages does not contain this index {:?}, entry slot {:?}", index, target_slot); let mut usage_set = HashSet::new(); usage_set.insert((key_in, *target_slot)); self.mapping_usages.insert(index, usage_set); @@ -196,6 +316,8 @@ impl<'a> ContractState<'a> { } key = None; } + + // handle dynamic-type mapping keys if log.op == "KECCAK256" || log.op == "SHA3" { let length_in_bytes = stack[stack.len() - 2]; let sha3_input = format!( @@ -215,7 +337,7 @@ impl<'a> ContractState<'a> { assert!(sha3_input.len() == usize_str_length); key = Some(sha3_input[2..usize_str_length - 64].to_string()); index = U256::from_str_radix(&sha3_input[usize_str_length - 64..], 16)?; - debug!("Found key {} for index {}.", key.clone().unwrap(), index); + println!("Found key {} for index {}.", key.clone().unwrap(), index); } } } @@ -245,7 +367,7 @@ impl<'a> ContractState<'a> { pi_types: &HashMap, zerovalue: bool, ) -> Result, ValidationError> { - let default_values = &ForgeInspect::default_values(); + let default_values = &ForgeInspectLayoutStorage::default_values(); // Add default types as we might need them let mut types = default_values.types.clone(); types.extend(pi_types.to_owned()); @@ -255,18 +377,21 @@ impl<'a> ContractState<'a> { let mut critical_storage_variables = Vec::::new(); - for state_variable in &self.state_variables { + // @fruspa forge inspect state variables + for state_variable in self.state_variables.clone() { + println!("stor var {:?}", state_variable); critical_storage_variables.extend(self.get_critical_variable( - state_variable, + &state_variable, snapshot, table, zerovalue, )?); } + // @fruspa extra special storage from ast parsing let mut storage = default_values.storage.clone(); storage.extend(pi_storage.to_owned()); - for sv in &storage { + for state_variable in &storage { // // Skip used slots, assume that the we won't have partial usage in case of structs // let min_size = cmp::min(self.get_number_of_bytes(&sv.var_type), 32 - sv.offset); // if !snapshot.check_if_set_and_unused(&sv.slot, sv.offset, min_size) { @@ -275,7 +400,7 @@ impl<'a> ContractState<'a> { // } let new_critical_storage_variables = - self.get_critical_variable(sv, snapshot, table, zerovalue)?; + self.get_critical_variable(state_variable, snapshot, table, zerovalue)?; let mut has_nonzero = false; for crit_var in &new_critical_storage_variables { if !crit_var.is_zero() { @@ -369,7 +494,7 @@ impl<'a> ContractState<'a> { } fn get_critical_variable( - &self, + &mut self, state_variable: &StateVariable, snapshot: &mut StorageSnapshot, table: &mut Table, @@ -487,6 +612,45 @@ impl<'a> ContractState<'a> { return Ok(critical_storage_variables); } if Self::is_mapping(&state_variable.var_type) { + // handle static-type keys + // if self.is_mapping_entry(&state_variable.var_type) { + + // // get corresponding mapping state variable (different than mapping entry state variable) + // let split: Vec = state_variable + // .label + // .split(".") + // .map(str::to_string) + // .collect(); + // if split.len() != 2 { + // println!("Invalid mapping entry label! {}", state_variable.label); + // return Ok(vec![]); + // } + // let mapping_label = split[0].clone(); + // let key_str = split[1].clone(); + + // // find state_variable.label in state_variables + // if self + // .mapping_label_to_sv_index + // .contains_key(&mapping_label) + // { + // // get the state variable of the mapping for this entry + // let state_variable_idx = self.mapping_label_to_sv_index[&mapping_label].clone(); + // let mapping_state_variable = self.state_variables[state_variable_idx].clone(); + + // // sorted_static_keys.sort(); + // // println!("sorted static keys: {:?}", sorted_static_keys); + // let mapping_slot = mapping_state_variable.slot; + // let entry_slot = + // keccak256([mapping_slot.as_le_slice(), key_str.as_bytes()].concat()); + + // self.mapping_usages + // .entry(mapping_slot) + // .or_insert_with(HashSet::new) + // .insert((key_str, U256::from_le_slice(&entry_slot.as_slice()))); + // } + // } + + // handle static and dynamic-type keys if !self.mapping_usages.contains_key(&state_variable.slot) { debug!("No mapping keys for {}", state_variable.slot); return Ok(vec![]); @@ -498,7 +662,9 @@ impl<'a> ContractState<'a> { .into_iter() .collect(); sorted_keys.sort(); + println!("sorted dynamic keys: {:?}", sorted_keys); for (sorted_key, target_slot) in &sorted_keys { + println!("sorted_key {}, target_slot {}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); // Skip if key is longer than actual key type of the mapping @@ -663,7 +829,7 @@ impl<'a> ContractState<'a> { } panic!( "Unknown solidity type: {state_variable:?}, {:?}", - self.types[&state_variable.var_type] + &state_variable.var_type ); } @@ -727,6 +893,10 @@ impl<'a> ContractState<'a> { var_type.starts_with("t_mapping") } + // pub fn is_mapping_entry(&self, var_type: &str) -> bool { + // Self::is_mapping(var_type) && self.types[var_type].encoding == "mapping_entry" + // } + pub fn is_variable_bytes(var_type: &str) -> bool { var_type.starts_with("t_bytes") && !var_type.chars().last().unwrap().is_ascii_digit() } diff --git a/lib/state/forge_inspect.rs b/lib/state/forge_inspect.rs index fd0b5e01..2732c4ad 100644 --- a/lib/state/forge_inspect.rs +++ b/lib/state/forge_inspect.rs @@ -125,12 +125,12 @@ pub struct TypeDescription { } #[derive(Deserialize, Debug, Default)] -pub struct ForgeInspect { +pub struct ForgeInspectLayoutStorage { pub storage: Vec, pub types: HashMap, } -impl ForgeInspect { +impl ForgeInspectLayoutStorage { pub fn default_values() -> Self { let storage: Vec = vec![]; let mut types: HashMap = HashMap::new(); @@ -146,7 +146,7 @@ impl ForgeInspect { }; types.insert(String::from("t_uint256"), uint256); - ForgeInspect { storage, types } + ForgeInspectLayoutStorage { storage, types } } pub fn generate_and_parse_layout( @@ -154,56 +154,93 @@ impl ForgeInspect { contract_name: &str, contract_path: Option, ) -> Self { - // Create a temporary directory - let temp_dir = TempDir::new().unwrap(); - // Get the path of the temporary directory - let temp_path = temp_dir.path(); - - // get temp path for cache dir so that this does not overwrite hardhat configs - let temp_cache_dir = TempDir::new().unwrap(); - let temp_cache_path = temp_cache_dir.path(); - - info!("Running forge inspect. This might take a while."); - // hardhat doesn't offer a simple solutipon to get the storage layout - // but if we pass the full path of a contract, we can still use - // forge inspect. - // TODO: If a future version of solidity should ever change the storage - // layout based on configuration, we might have to revise this. - let mut contract = contract_name.to_string(); - if let Some(path) = contract_path { - contract = format!("{}:{}", path, contract_name); - } - let forge_inspect = Command::new("forge") - .env("RUST_LOG", "error") // prevents `forge inspect` from contaminating the JSON with logs - .current_dir(project_path) - .arg("inspect") - .arg("--force") - .arg("--json") - .arg("--root") // required because forge will use Git root (not necessarily project root) by default - .arg(".") - .arg("--out") - .arg(temp_path.as_os_str()) - .arg("--cache-path") - .arg(temp_cache_path.as_os_str()) - .arg(contract) - .arg("storage-layout") - .output() - .expect("Could not create storage layout"); - - assert!( - forge_inspect.status.success(), - "Failed to run forge inspect:\n{}", - String::from_utf8_lossy(&forge_inspect.stderr) + let layout = forge_inspect_helper( + project_path, + contract_name, + contract_path, + String::from("storageLayout"), ); - - let layout = String::from_utf8(forge_inspect.stdout).unwrap(); - debug!("{}", layout); - debug!("Parsed forge inspect output."); - - serde_json::from_str::(&layout).unwrap() + serde_json::from_str::(&layout).unwrap() } pub fn get_size_for_type(&self, var_type: &String) -> usize { self.types[var_type].number_of_bytes } } + +#[derive(Deserialize, Debug, Default)] +pub struct ForgeInspectIrOptimized { + pub ir: String, +} + +impl ForgeInspectIrOptimized { + pub fn generate_and_parse_ir_optimized( + project_path: &Path, + contract_name: &str, + contract_path: Option, + ) -> Self { + let ir_output = forge_inspect_helper( + project_path, + contract_name, + contract_path, + String::from("irOptimized"), + ); + + Self { ir: ir_output } + } +} + +fn forge_inspect_helper( + project_path: &Path, + contract_name: &str, + contract_path: Option, + field: String, +) -> String { + // Create a temporary directory + let temp_dir = TempDir::new().unwrap(); + // Get the path of the temporary directory + let temp_path = temp_dir.path(); + + // get temp path for cache dir so that this does not overwrite hardhat configs + let temp_cache_dir = TempDir::new().unwrap(); + let temp_cache_path = temp_cache_dir.path(); + + info!("Running forge inspect. This might take a while."); + // hardhat doesn't offer a simple solutipon to get the storage layout + // but if we pass the full path of a contract, we can still use + // forge inspect. + // TODO: If a future version of solidity should ever change the storage + // layout based on configuration, we might have to revise this. + let mut contract = contract_name.to_string(); + if let Some(path) = contract_path { + contract = format!("{}:{}", path, contract_name); + } + let forge_inspect = Command::new("forge") + .env("RUST_LOG", "error") // prevents `forge inspect` from contaminating the JSON with logs + .current_dir(project_path) + .arg("inspect") + .arg("--force") + .arg("--json") + .arg("--root") // required because forge will use Git root (not necessarily project root) by default + .arg(".") + .arg("--out") + .arg(temp_path.as_os_str()) + .arg("--cache-path") + .arg(temp_cache_path.as_os_str()) + .arg(contract) + .arg(field) + .output() + .expect("Could not create storage layout"); + + assert!( + forge_inspect.status.success(), + "Failed to run forge inspect:\n{}", + String::from_utf8_lossy(&forge_inspect.stderr) + ); + + let layout = String::from_utf8(forge_inspect.stdout).unwrap(); + debug!("{}", layout); + debug!("Parsed forge inspect output."); + + return layout; +} diff --git a/lib/web3.rs b/lib/web3.rs index a07b04e9..d2e910a8 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -1415,8 +1415,9 @@ impl StorageSnapshot { //Self::validate_snapshot_with_mpt_root(config, &snapshot, address, init_block_num); } }; - debug!("Storage Snapshot: {:?}", snapshot); + // println!("Storage Snapshot: {:?}", snapshot); let unused_parts = Self::init_unused_parts(&snapshot); + // println!("Unused {:?}", unused_parts); Ok(StorageSnapshot { snapshot, unused_parts, @@ -1525,6 +1526,7 @@ impl StorageSnapshot { let mut depth_to_address: HashMap = HashMap::new(); depth_to_address.insert(1, trace_w_a.address); // depth -> last_storage + // depth -> (slot -> value) let mut last_storage: HashMap> = HashMap::new(); let last_depth = 1_u64; @@ -1569,6 +1571,9 @@ impl StorageSnapshot { let slot = stack[stack.len() - 1]; last_store.insert(slot, value); //last_storage.insert(log.depth, last_store); + + // fruspa probably modify here + println!("add_trace found opcode SSTORE slot {:?} value {:?}", slot, value); } // Save upon successful return diff --git a/src/dvf.rs b/src/dvf.rs index e404b52c..5c9ab257 100644 --- a/src/dvf.rs +++ b/src/dvf.rs @@ -987,14 +987,22 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> { print_progress("Obtaining storage layout.", &mut pc, &progress_mode); // Fetch storage layout - let layout = forge_inspect::ForgeInspect::generate_and_parse_layout( + let fi_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( + project, + &dumped.contract_name, + project_info.absolute_path.clone(), + ); + let fi_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( project, &dumped.contract_name, project_info.absolute_path.clone(), ); let mut contract_state = ContractState::new_with_address(&dumped.address, &pretty_printer); - contract_state.add_forge_inspect(&layout); + contract_state.add_forge_inspect(&fi_layout, &fi_ir); + // contract_state.types.extend(project_info.types.clone()); + // let assign = contract_state.types["t_mapping_entry"].clone(); + // println!("\n\nCULO {:?}", assign); // Proxy Mode let mut storage: Vec = project_info.storage.clone(); @@ -1020,12 +1028,18 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> { &mut pc, &progress_mode, ); - let implementation_layout = forge_inspect::ForgeInspect::generate_and_parse_layout( + let fi_impl_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( + &imp_path, + implementation_name, + tmp_project_info.absolute_path.clone(), + ); + let fi_impl_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( &imp_path, implementation_name, tmp_project_info.absolute_path.clone(), ); - contract_state.add_forge_inspect(&implementation_layout); + contract_state.add_forge_inspect(&fi_impl_layout, &fi_impl_ir); + // contract_state.types.extend(tmp_project_info.types.clone()); storage.extend(tmp_project_info.storage.clone()); types.extend(tmp_project_info.types.clone()); diff --git a/src/gentest.rs b/src/gentest.rs index b3f0774e..83fed75b 100644 --- a/src/gentest.rs +++ b/src/gentest.rs @@ -68,7 +68,7 @@ fn gen_test(matches: &ArgMatches) -> Result<(), ValidationError> { let tx_id = matches.get_one::("txid").unwrap().to_string(); let name = matches.get_one::("name").unwrap().to_string(); - let chain_id = *matches.get_one::("chainid").unwrap_or(&1); + let chain_id = *matches.get_one::("chainid").unwrap_or(&31337); config.set_chain_id(chain_id)?; let trace_w_a = web3::get_eth_debug_trace(&config, &tx_id)?; @@ -95,12 +95,17 @@ fn gen_test(matches: &ArgMatches) -> Result<(), ValidationError> { let pretty_printer = PrettyPrinter::new(&config, None); let mut global_state = ContractState::new_with_address(&trace_w_a.address, &pretty_printer); - let forge_inspect = forge_inspect::ForgeInspect::generate_and_parse_layout( + let forge_inspect = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( Path::new("tests/Contracts"), &name, None, ); - global_state.add_forge_inspect(&forge_inspect); + let fi_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( + Path::new("tests/Contracts"), + &name, + None, + ); + global_state.add_forge_inspect(&forge_inspect, &fi_ir); global_state.record_traces(&config, vec![trace_w_a.clone()])?; let mut table = Table::new(); let critical_vars = global_state.get_critical_storage_variables( diff --git a/tests/Contracts/script/Deploy_StaticInMapping.s.sol b/tests/Contracts/script/Deploy_StaticInMapping.s.sol new file mode 100644 index 00000000..cb1ce9fa --- /dev/null +++ b/tests/Contracts/script/Deploy_StaticInMapping.s.sol @@ -0,0 +1,27 @@ +pragma solidity ^0.8.12; + +import "forge-std/Script.sol"; +import "../src/StaticInMapping.sol"; + +contract S is Script { + uint256 x; + uint256 y; + + function run() external { + uint256 anvilDefaultKey = 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80; + //uint256 ganacheDefaultKey = 0x0cc0c2de7e8c30525b4ca3b9e0b9703fb29569060d403261055481df7014f7fa; + vm.startBroadcast(anvilDefaultKey); + StaticInMapping b = new StaticInMapping(); + // b.f(); + // b.g(); + b.assign(); + for (uint256 i = 0; i < 20; i++) { + b.dummy(); + // Waste some time here + for (uint256 j = 0; j < 10; j++) { + y = x; + } + } + vm.stopBroadcast(); + } +} diff --git a/tests/Contracts/src/StaticInMapping.sol b/tests/Contracts/src/StaticInMapping.sol index e694e3cc..87d0137e 100644 --- a/tests/Contracts/src/StaticInMapping.sol +++ b/tests/Contracts/src/StaticInMapping.sol @@ -2,11 +2,26 @@ pragma solidity ^0.8.13; contract StaticInMapping { - mapping(address => uint128[3]) static_in_mapping; + mapping(address => uint256) static_in_mapping; + mapping(uint256 => uint256) static_in_mapping2; constructor() { - static_in_mapping[address(this)][2] = 2 ** 128 - 1; - static_in_mapping[address(this)][0] = 2 ** 128 - 1; - static_in_mapping[msg.sender][1] = 5; + // static_in_mapping[address(this)] = 2 ** 128 - 1; + + // compiler computes sha3 of key + // static_in_mapping[address(1)] = 16; + + static_in_mapping[address(this)] = 2 ** 256 - 1; + static_in_mapping[msg.sender] = 5; + static_in_mapping2[2+3] = 45; } + + function assign() external { + // compiler computes sha3 of key + static_in_mapping[address(1)] = 16; + static_in_mapping2[1+3] = 42; + static_in_mapping2[1+16] = 81+2; + } + + function dummy() external {} } From 8b6882d732f640d3aea60b1e977a829894877438 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Thu, 24 Jul 2025 12:11:26 +0200 Subject: [PATCH 02/10] Working decoding --- lib/state/contract_state.rs | 155 +++++++++++++++++++++++++----------- 1 file changed, 110 insertions(+), 45 deletions(-) diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index abc09995..eec27522 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -111,79 +111,144 @@ impl<'a> ContractState<'a> { } } + // Utility to normalize all numeric values to hex + fn normalize_to_hex(val: &str) -> String { + if let Ok(num) = u128::from_str_radix(val.trim_start_matches("0x"), 16) { + // make sure all values are represented as hexadecimal strings of uint256 + format!("0x{:064x}", num) + // else { + // if val.starts_with("0x") { + // val.to_string() + // format!("0x{:064x}", val) + // } else if let Ok(num) = u128::from_str_radix(val, 10) { + // // make sure all values are represented as hexadecimal strings of uint256 + // format!("0x{:064x}", num) + } else { + val.to_string() // fallback, maybe a variable reference + } + } + /// Given the contract IR optimized output, extracts the mapping assigments with static keys fn add_static_key_mapping_entries(&mut self, fi_ir_optimized: &ForgeInspectIrOptimized) { - // self.mapping_usages - // .entry(U256::from_str("1").unwrap()) - // .or_insert_with(HashSet::new) - // .insert((String::from("0x"), U256::from_str("90833963927758799113719025603677964796474124828269229747399379044572608754728").unwrap())); - // return; - // let mut assignments = Vec::new(); let lines: Vec<&str> = fi_ir_optimized.ir.lines().collect(); let mut last_key: Option = None; let mut last_slot: Option = None; - let re_mstore = - Regex::new(r#"mstore\(([^,]+),\s*/\*\*.*?"(?:.*?)"\s*\*/\s*(0x[0-9a-fA-F]+)\)"#) - .unwrap(); + // attempts to track variables + // variable_name -> variable_value + let mut variables: HashMap = HashMap::new(); + + let re_let = Regex::new(r#"let\s+(\S+)\s*:=\s*([0-9a-fA-F]+)"#).unwrap(); + let re_mstore = Regex::new( + r#"mstore\(\s*(?:/\*\*.*?\*/\s*)?([^\s,]+)\s*,\s*(?:/\*\*.*?\*/\s*)?([^\s\)]+)\s*\)"#, + ) + .unwrap(); let re_sstore = Regex::new( r#"sstore\(keccak256\([^\)]*\),\s*/\*\*.*?"(?:.*?)"\s*\*/\s*(0x[0-9a-fA-F]+)\)"#, ) .unwrap(); for line in &lines { - if line.trim_ascii_start().starts_with("///") { + let line = &line.trim_ascii_start(); + + if line.starts_with("///") { continue; } println!("Consider line: {:?}", line); + + // Capture let _var := 0x... + if let Some(caps) = re_let.captures(line) { + let var_name = caps[1].to_string(); + let raw_val = caps[2].to_string(); + let value = Self::normalize_to_hex(&raw_val); + println!("Captured let: {:?} val: {:?}", var_name, value); + variables.insert(var_name, value); + } + + // Match mstore(dest, value) if let Some(caps) = re_mstore.captures(line) { - let mem_location = caps.get(1).unwrap().as_str(); - let val = caps.get(2).unwrap().as_str(); + let mut dest = caps[1].to_string(); + let mut val = caps[2].to_string(); + println!("Captured mstore dest: {:?} val: {:?}", dest, val); - println!("Captured mem_location {:?} val {:?}", mem_location, val); + if let Some(resolved_dest) = variables.get(&dest).cloned() { + dest = resolved_dest; + } - match mem_location { - "0x20" => last_slot = Some(val.to_string()), - _ => last_key = Some(val.to_string()), + if let Some(resolved_val) = variables.get(&val).cloned() { + val = resolved_val; + } + + // dest = Self::normalize_to_hex(&dest); + val = Self::normalize_to_hex(&val); + + println!("Resolved mstore dest: {:?} val: {:?}", dest, val); + + match dest.as_str() { + "0x20" => last_slot = Some(val), + _ => last_key = Some(val), } } if let Some(caps) = re_sstore.captures(line) { - if let (Some(ref last_key_), Some(ref last_slot_)) = (last_key.clone(), last_slot.clone()) { - println!("Captured key string {:?} slot string {:?}", last_key_, last_slot_); - let key_bytes = - hex::decode(last_key_.trim_start_matches("0x")) - .unwrap(); - let slot_bytes = - hex::decode(last_slot_.trim_start_matches("0x")) - .unwrap(); + if let (Some(last_key_), Some(last_slot_)) = (last_key.clone(), last_slot.clone()) { + println!( + "Captured key string {:?} slot string {:?}", + last_key_, last_slot_ + ); + + // Resolve from variable map if needed + let resolved_last_key = variables.get(&last_key_).cloned().unwrap_or(last_key_); + let resolved_last_slot = + variables.get(&last_slot_).cloned().unwrap_or(last_slot_); - let mut padded_key = vec![0u8; 32]; - let mut padded_slot = vec![0u8; 32]; + println!( + "Resolved sstore last_key_: {:?} last_slot_: {:?}", + resolved_last_key, resolved_last_slot + ); - padded_key[32 - key_bytes.len()..].copy_from_slice(&key_bytes); - padded_slot[32 - slot_bytes.len()..].copy_from_slice(&slot_bytes); + match ( + hex::decode(resolved_last_key.trim_start_matches("0x")).ok(), + hex::decode(resolved_last_slot.trim_start_matches("0x")).ok(), + ) { + (Some(key_bytes), Some(slot_bytes)) => { + let mut padded_key = vec![0u8; 32]; + let mut padded_slot = vec![0u8; 32]; - let mut keccak_input = vec![]; - keccak_input.extend_from_slice(&padded_key); - keccak_input.extend_from_slice(&padded_slot); + padded_key[32 - key_bytes.len()..].copy_from_slice(&key_bytes); + padded_slot[32 - slot_bytes.len()..].copy_from_slice(&slot_bytes); - // let mut hasher = Keccak256::new(); - // hasher.update(&keccak_input); - // let entry_slot = hasher.finalize(); - // println!("keccak input {:?}", keccak_input.clone()); - let entry_slot = U256::from_be_bytes(keccak256(keccak_input).into()); - // let entry_slot_hex = format!("0x{}", hex::encode(entry_slot)); + let mut keccak_input = vec![]; + keccak_input.extend_from_slice(&padded_key); + keccak_input.extend_from_slice(&padded_slot); + println!("keccak input {:?}", keccak_input); - let last_slot_u256 = U256::from_str_radix(last_slot_.trim_start_matches("0x"), 16).unwrap(); + let entry_slot = U256::from_be_bytes(keccak256(keccak_input).into()); - self.mapping_usages - .entry(last_slot_u256) - .or_insert_with(HashSet::new) - .insert((last_key_.clone(), entry_slot)); + let mapping_slot = U256::from_str_radix( + resolved_last_slot.trim_start_matches("0x"), + 16, + ) + .unwrap(); + + self.mapping_usages + .entry(mapping_slot) + .or_insert_with(HashSet::new) + .insert((resolved_last_key, entry_slot)); + } + _ => { + println!( + "Warning: could not decode key or slot in line: {}, key: {}, slot: {}", + line, resolved_last_key, resolved_last_slot + ); + // reset slot after unrecognised sstore + last_slot = None; + continue; + } + } - // Reset key (next store might use new key) + // always reset key after an sstore last_key = None; } } @@ -662,7 +727,7 @@ impl<'a> ContractState<'a> { .into_iter() .collect(); sorted_keys.sort(); - println!("sorted dynamic keys: {:?}", sorted_keys); + // println!("sorted dynamic keys: {:?}", sorted_keys); for (sorted_key, target_slot) in &sorted_keys { println!("sorted_key {}, target_slot {}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); @@ -672,7 +737,7 @@ impl<'a> ContractState<'a> { // the last 32 bytes correspond to a slot // we can still have false positives, so the --zerovalue option // should be used with care - if self.has_inplace_encoding(&key_type) && sorted_key.len() > 64 { + if self.has_inplace_encoding(&key_type) && sorted_key.trim_start_matches("0x").len() > 64 { continue; } From 10edd0e9f150448785eb42877d1796ebcaeca6be Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Thu, 24 Jul 2025 13:42:09 +0200 Subject: [PATCH 03/10] Clean up --- lib/bytecode_verification/parse_json.rs | 165 ------------------------ lib/state/contract_state.rs | 90 +------------ src/dvf.rs | 4 - 3 files changed, 5 insertions(+), 254 deletions(-) diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index 884a97b8..08f22f72 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -88,8 +88,6 @@ impl ProjectInfo { .current_dir(project) .arg("build") .arg("--build-info") - // .arg("--extra-output") - // .arg("storageLayout") .arg("--build-info-path") .arg(build_info_path.to_str().unwrap()); @@ -1142,159 +1140,6 @@ impl ProjectInfo { } } - /// Parses the AST of a contract for assignments to mappings where the key is a static type. - fn find_static_mapping_writes( - sources: &BTreeMap, - type_defs: &Types, - exported_ids: &Vec, - storage: &mut Vec, - storage_layout: &StorageLayout, - types: &mut HashMap, - ) { - for source in sources.values() { - if let Some(ast) = source.ast.clone() { - for node in &ast.nodes { - Self::find_static_mapping_writes_helper( - sources, - node, - type_defs, - exported_ids, - storage, - storage_layout, - types, - ); - } - } - } - } - - fn find_static_mapping_writes_helper( - sources: &BTreeMap, - node: &EAstNode, - type_defs: &Types, - exported_ids: &Vec, - storage: &mut Vec, - storage_layout: &StorageLayout, - types: &mut HashMap, - ) { - if node.node_type == NodeType::ContractDefinition - && node.id.is_some() - && !exported_ids.contains(&node.id.unwrap()) - { - return; - } - - // variables are typically assigned in function definitions - - // if node.node_type == NodeType::FunctionDefinition { - // println!("MMMH OOOK: {:?}", node.node_type); - // } - - if node.node_type == NodeType::FunctionDefinition && node.id.is_some() { - let Some(body_node) = &node.body else { - return; - }; - - let Some(stmts) = body_node.other.get("statements") else { - return; - }; - - for stmt in stmts.as_array().unwrap().iter() { - //Looking for Assignment nodes - if stmt["nodeType"] != "ExpressionStatement" { - continue; - } - - let expression = &stmt["expression"]; - if expression["nodeType"] != "Assignment" { - continue; - } - - // println!("\nAt this point storage is {:?}", self.id_to_ast); - // let mapping_name = String::new(); - // let mapping_type = String::new(); - - // find left side of the assignment - let left_hand_side = &expression["leftHandSide"]; - let Some(base_expression) = &left_hand_side.get("baseExpression") else { - continue; - }; - if base_expression["nodeType"] != "Identifier" - || !base_expression["typeDescriptions"]["typeIdentifier"] - .as_str() - .unwrap() - .starts_with("t_mapping") - { - continue; - } - // get the type of the mapping keys and values - let mapping_type = base_expression["typeDescriptions"]["typeIdentifier"].to_string(); - println!("base expr: {:?}, mapping_type {}", base_expression, mapping_type); - let re = regex::Regex::new(r"t_mapping\$_(.*)_\$_(.*)_\$").unwrap(); - let Some(caps) = re.captures(&mapping_type) else { - panic!("Failed to extract mapping type: {}", &mapping_type); - }; - let key_type = caps[1].to_string(); - let value_type = caps[2].to_string(); - - // let variable_ast_id = base_expression.get("referencedDeclaration"); - let Some(mapping_label) = base_expression["name"].as_str() else { - continue; - }; - - // get the key string - let Some(index_expression) = &left_hand_side.get("indexExpression") else { - continue; - }; - let Some(key_str) = index_expression["arguments"][0]["value"].as_str() else { - continue; - }; - // let key_str = index_expression["arguments"][0]["value"].as_str().unwrap().to_string(); - - let mapping_entry_type = format!( - "t_mapping_entry" - ); - types.insert( - mapping_entry_type.clone(), - TypeDescription { - encoding: String::from("mapping_entry"), - label: "POOO".to_string(), - number_of_bytes: 32, - base: None, - key: Some(key_type), - value: Some(value_type), - members: None, - }, - ); - // @note here we don't know the mapping slot unless we parse the AST for it. - // For efficiency reasons, we figure out the mapping slot later using the storage layout from forge inspect - storage.push(StateVariable { - contract: String::from(""), - label: format!("{}.{}", mapping_label, key_str), - offset: 0, - slot: U256::from(0), - var_type: mapping_entry_type.clone(), - }); - - println!("Inserted label {}", format!("{}.{}", mapping_label, key_str)); - println!("Inserted type {}", mapping_entry_type); - } - } - - //Recurse through the AST - for subnode in &node.nodes { - Self::find_static_mapping_writes_helper( - sources, - subnode, - type_defs, - exported_ids, - storage, - storage_layout, - types, - ); - } - } - /// Parses the AST of a contract for descriptions (name and type) of variables that are directly /// written to storage using assembly. /// Creates a set of StorageVariables and TypeDescriptions that can be used by ContractState. @@ -1785,16 +1630,6 @@ impl ProjectInfo { &mut types, ); - // Self::find_static_mapping_writes( - // &build_info.output.sources, - // &type_defs, - // &exported_ids, - // &mut storage, - // &contract.storage_layout, - // &mut types, - // ); - // println!("Storage after finding static mappings writes: {:?}", storage); - let immutables = Self::extract_immutables(&deployed_bytecode, &id_to_ast); // If we are not using build_cache then delete the tmp files diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index eec27522..fce21f9b 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -6,14 +6,12 @@ use std::str::FromStr; use alloy::primitives::{keccak256, Address, B256, U256}; use prettytable::Table; use regex::Regex; -use sha3::{Digest, Keccak256}; use tracing::{debug, info}; use crate::dvf::config::DVFConfig; use crate::dvf::parse; use crate::dvf::parse::DVFStorageEntry; use crate::dvf::parse::ValidationError; -use crate::state; use crate::state::contract_state::parse::DVFStorageComparisonOperator; use crate::state::forge_inspect::{ ForgeInspectIrOptimized, ForgeInspectLayoutStorage, StateVariable, TypeDescription, @@ -42,11 +40,6 @@ pub struct ContractState<'a> { pub types: HashMap, // Storage Index of Mapping -> (Key, derived storage slot) pub mapping_usages: HashMap>, - - // Mapping name -> List of static-type keys - // TODO name - pub mapping_label_to_sv_index: HashMap, - // The contract address pub address: Address, // Print human readable @@ -59,7 +52,6 @@ impl<'a> ContractState<'a> { state_variables: vec![], types: HashMap::new(), mapping_usages: HashMap::new(), - mapping_label_to_sv_index: HashMap::new(), address: Address::from_str(address).unwrap(), pretty_printer, } @@ -70,7 +62,6 @@ impl<'a> ContractState<'a> { state_variables: vec![], types: HashMap::new(), mapping_usages: HashMap::new(), - mapping_label_to_sv_index: HashMap::new(), address: *address, pretty_printer, } @@ -97,8 +88,6 @@ impl<'a> ContractState<'a> { if !found { self.state_variables.push(sv.clone()); } - // self.mapping_label_to_sv_index - // .insert(sv.label.clone(), self.state_variables.len() - 1); } fn add_type(&mut self, var_type: &String, type_desc: &TypeDescription) { @@ -116,15 +105,9 @@ impl<'a> ContractState<'a> { if let Ok(num) = u128::from_str_radix(val.trim_start_matches("0x"), 16) { // make sure all values are represented as hexadecimal strings of uint256 format!("0x{:064x}", num) - // else { - // if val.starts_with("0x") { - // val.to_string() - // format!("0x{:064x}", val) - // } else if let Ok(num) = u128::from_str_radix(val, 10) { - // // make sure all values are represented as hexadecimal strings of uint256 - // format!("0x{:064x}", num) } else { - val.to_string() // fallback, maybe a variable reference + // fallback, maybe a variable reference + val.to_string() } } @@ -310,7 +293,6 @@ impl<'a> ContractState<'a> { let mut key: Option = None; // Mapping storage index, only meaningful when key is Some let mut index: U256 = U256::from(1); - for log in trace_w_a.trace.struct_logs { // Boring state if log.stack.is_none() { @@ -347,30 +329,11 @@ impl<'a> ContractState<'a> { depth_to_address.insert(log.depth + 1, depth_to_address[&log.depth]); } - // handle static-type mapping keys - // if log.op == "SSTORE" { - // // let value = stack[stack.len() - 2]; - // let slot = stack[stack.len() - 1]; - // println!("SSTORE found slot: {:?}", slot); - - // let target_slot = U256::from_str("78541660797044910968829902406342334108369226379826116161446442989268089806461") - // .expect("invalid slot number"); - - // if slot == target_slot { - // println!("SSTORE is storing at slot corresponding to static-type key!"); - // key = Some( - // "0000000000000000000000000000000000000000000000000000000000000001" - // .to_string(), - // ); - // index = U256::from(0); - // } - // } - if depth_to_address[&log.depth] == self.address { if let Some(key_in) = key { let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { - println!("Of course mapping usages does not contain this index {:?}, entry slot {:?}", index, target_slot); + println!("Mapping usages does not contain index {:?}, entry slot {:?}", index, target_slot); let mut usage_set = HashSet::new(); usage_set.insert((key_in, *target_slot)); self.mapping_usages.insert(index, usage_set); @@ -559,7 +522,7 @@ impl<'a> ContractState<'a> { } fn get_critical_variable( - &mut self, + &self, state_variable: &StateVariable, snapshot: &mut StorageSnapshot, table: &mut Table, @@ -677,44 +640,6 @@ impl<'a> ContractState<'a> { return Ok(critical_storage_variables); } if Self::is_mapping(&state_variable.var_type) { - // handle static-type keys - // if self.is_mapping_entry(&state_variable.var_type) { - - // // get corresponding mapping state variable (different than mapping entry state variable) - // let split: Vec = state_variable - // .label - // .split(".") - // .map(str::to_string) - // .collect(); - // if split.len() != 2 { - // println!("Invalid mapping entry label! {}", state_variable.label); - // return Ok(vec![]); - // } - // let mapping_label = split[0].clone(); - // let key_str = split[1].clone(); - - // // find state_variable.label in state_variables - // if self - // .mapping_label_to_sv_index - // .contains_key(&mapping_label) - // { - // // get the state variable of the mapping for this entry - // let state_variable_idx = self.mapping_label_to_sv_index[&mapping_label].clone(); - // let mapping_state_variable = self.state_variables[state_variable_idx].clone(); - - // // sorted_static_keys.sort(); - // // println!("sorted static keys: {:?}", sorted_static_keys); - // let mapping_slot = mapping_state_variable.slot; - // let entry_slot = - // keccak256([mapping_slot.as_le_slice(), key_str.as_bytes()].concat()); - - // self.mapping_usages - // .entry(mapping_slot) - // .or_insert_with(HashSet::new) - // .insert((key_str, U256::from_le_slice(&entry_slot.as_slice()))); - // } - // } - // handle static and dynamic-type keys if !self.mapping_usages.contains_key(&state_variable.slot) { debug!("No mapping keys for {}", state_variable.slot); @@ -727,7 +652,6 @@ impl<'a> ContractState<'a> { .into_iter() .collect(); sorted_keys.sort(); - // println!("sorted dynamic keys: {:?}", sorted_keys); for (sorted_key, target_slot) in &sorted_keys { println!("sorted_key {}, target_slot {}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); @@ -894,7 +818,7 @@ impl<'a> ContractState<'a> { } panic!( "Unknown solidity type: {state_variable:?}, {:?}", - &state_variable.var_type + self.types[&state_variable.var_type] ); } @@ -958,10 +882,6 @@ impl<'a> ContractState<'a> { var_type.starts_with("t_mapping") } - // pub fn is_mapping_entry(&self, var_type: &str) -> bool { - // Self::is_mapping(var_type) && self.types[var_type].encoding == "mapping_entry" - // } - pub fn is_variable_bytes(var_type: &str) -> bool { var_type.starts_with("t_bytes") && !var_type.chars().last().unwrap().is_ascii_digit() } diff --git a/src/dvf.rs b/src/dvf.rs index 5c9ab257..307b0fe0 100644 --- a/src/dvf.rs +++ b/src/dvf.rs @@ -1000,9 +1000,6 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> { let mut contract_state = ContractState::new_with_address(&dumped.address, &pretty_printer); contract_state.add_forge_inspect(&fi_layout, &fi_ir); - // contract_state.types.extend(project_info.types.clone()); - // let assign = contract_state.types["t_mapping_entry"].clone(); - // println!("\n\nCULO {:?}", assign); // Proxy Mode let mut storage: Vec = project_info.storage.clone(); @@ -1039,7 +1036,6 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> { tmp_project_info.absolute_path.clone(), ); contract_state.add_forge_inspect(&fi_impl_layout, &fi_impl_ir); - // contract_state.types.extend(tmp_project_info.types.clone()); storage.extend(tmp_project_info.storage.clone()); types.extend(tmp_project_info.types.clone()); From be6ed7155886aea15f221369a8c6738a73166aaa Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Thu, 24 Jul 2025 16:37:29 +0200 Subject: [PATCH 04/10] Update tests, clean up --- lib/bytecode_verification/parse_json.rs | 1 - lib/state/contract_state.rs | 26 +++---- lib/web3.rs | 1 + src/gentest.rs | 4 +- tests/Contracts/src/StaticInMapping.sol | 2 +- tests/expected_dvfs/StaticInMapping.dvf.json | 82 ++++++++++++++++++++ tests/test_decoding.rs | 10 ++- tests/test_end_to_end.rs | 8 +- 8 files changed, 114 insertions(+), 20 deletions(-) create mode 100644 tests/expected_dvfs/StaticInMapping.dvf.json diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index 08f22f72..e36b22b9 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -6,7 +6,6 @@ use std::path::PathBuf; use alloy::json_abi::Constructor; use alloy::primitives::U256; use clap::ValueEnum; -use foundry_compilers::artifacts::StorageLayout; use semver::Version; use serde_json; use serde_json::Value; diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index fce21f9b..97e1bfcf 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -138,14 +138,14 @@ impl<'a> ContractState<'a> { continue; } - println!("Consider line: {:?}", line); + // println!("Consider line: {:?}", line); // Capture let _var := 0x... if let Some(caps) = re_let.captures(line) { let var_name = caps[1].to_string(); let raw_val = caps[2].to_string(); let value = Self::normalize_to_hex(&raw_val); - println!("Captured let: {:?} val: {:?}", var_name, value); + // println!("Captured let: {:?} val: {:?}", var_name, value); variables.insert(var_name, value); } @@ -153,7 +153,7 @@ impl<'a> ContractState<'a> { if let Some(caps) = re_mstore.captures(line) { let mut dest = caps[1].to_string(); let mut val = caps[2].to_string(); - println!("Captured mstore dest: {:?} val: {:?}", dest, val); + // println!("Captured mstore dest: {:?} val: {:?}", dest, val); if let Some(resolved_dest) = variables.get(&dest).cloned() { dest = resolved_dest; @@ -166,7 +166,7 @@ impl<'a> ContractState<'a> { // dest = Self::normalize_to_hex(&dest); val = Self::normalize_to_hex(&val); - println!("Resolved mstore dest: {:?} val: {:?}", dest, val); + // println!("Resolved mstore dest: {:?} val: {:?}", dest, val); match dest.as_str() { "0x20" => last_slot = Some(val), @@ -176,20 +176,20 @@ impl<'a> ContractState<'a> { if let Some(caps) = re_sstore.captures(line) { if let (Some(last_key_), Some(last_slot_)) = (last_key.clone(), last_slot.clone()) { - println!( - "Captured key string {:?} slot string {:?}", - last_key_, last_slot_ - ); + // println!( + // "Captured key string {:?} slot string {:?}", + // last_key_, last_slot_ + // ); // Resolve from variable map if needed let resolved_last_key = variables.get(&last_key_).cloned().unwrap_or(last_key_); let resolved_last_slot = variables.get(&last_slot_).cloned().unwrap_or(last_slot_); - println!( - "Resolved sstore last_key_: {:?} last_slot_: {:?}", - resolved_last_key, resolved_last_slot - ); + // println!( + // "Resolved sstore last_key_: {:?} last_slot_: {:?}", + // resolved_last_key, resolved_last_slot + // ); match ( hex::decode(resolved_last_key.trim_start_matches("0x")).ok(), @@ -205,7 +205,7 @@ impl<'a> ContractState<'a> { let mut keccak_input = vec![]; keccak_input.extend_from_slice(&padded_key); keccak_input.extend_from_slice(&padded_slot); - println!("keccak input {:?}", keccak_input); + // println!("keccak input {:?}", keccak_input); let entry_slot = U256::from_be_bytes(keccak256(keccak_input).into()); diff --git a/lib/web3.rs b/lib/web3.rs index d2e910a8..7acb32c6 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -258,6 +258,7 @@ pub fn get_eth_debug_trace( "id": 1 }); let result = send_blocking_web3_post(config, &request_body)?; + println!("Sending to {:?}", config.get_rpc_url()?); // Parse the response as a JSON list let trace: DefaultFrame = serde_json::from_value(result)?; diff --git a/src/gentest.rs b/src/gentest.rs index 83fed75b..82967c31 100644 --- a/src/gentest.rs +++ b/src/gentest.rs @@ -95,7 +95,7 @@ fn gen_test(matches: &ArgMatches) -> Result<(), ValidationError> { let pretty_printer = PrettyPrinter::new(&config, None); let mut global_state = ContractState::new_with_address(&trace_w_a.address, &pretty_printer); - let forge_inspect = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( + let fi_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( Path::new("tests/Contracts"), &name, None, @@ -105,7 +105,7 @@ fn gen_test(matches: &ArgMatches) -> Result<(), ValidationError> { &name, None, ); - global_state.add_forge_inspect(&forge_inspect, &fi_ir); + global_state.add_forge_inspect(&fi_layout, &fi_ir); global_state.record_traces(&config, vec![trace_w_a.clone()])?; let mut table = Table::new(); let critical_vars = global_state.get_critical_storage_variables( diff --git a/tests/Contracts/src/StaticInMapping.sol b/tests/Contracts/src/StaticInMapping.sol index 87d0137e..16127ccf 100644 --- a/tests/Contracts/src/StaticInMapping.sol +++ b/tests/Contracts/src/StaticInMapping.sol @@ -19,7 +19,7 @@ contract StaticInMapping { function assign() external { // compiler computes sha3 of key static_in_mapping[address(1)] = 16; - static_in_mapping2[1+3] = 42; + static_in_mapping2[1+15] = 42; static_in_mapping2[1+16] = 81+2; } diff --git a/tests/expected_dvfs/StaticInMapping.dvf.json b/tests/expected_dvfs/StaticInMapping.dvf.json new file mode 100644 index 00000000..26e81bd5 --- /dev/null +++ b/tests/expected_dvfs/StaticInMapping.dvf.json @@ -0,0 +1,82 @@ +{ + "version": "0.9.1", + "id": "0x45f2ab5fb4dd26589122948436b0c8963ea0f2ebc56efe05b2b4931f9acf3754", + "contract_name": "StaticInMapping", + "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", + "chain_id": 1337, + "deployment_block_num": 2, + "init_block_num": 4, + "deployment_tx": "0xee0f30f454c60689932be3068a44e92e9e59f8ff5e92351a57153cd259458185", + "codehash": "0x9f192fd66f7d7f061d58e1f2bd1f7572bf01d5d4f976585e8cff140a190c9575", + "insecure": false, + "immutables": [], + "constructor_args": [], + "critical_storage_variables": [ + { + "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "offset": 0, + "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value_hint": "5", + "comparison_operator": "Equal" + }, + { + "slot": "0x755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb640983", + "offset": 0, + "var_name": "static_in_mapping2[16]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, + { + "slot": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "offset": 0, + "var_name": "static_in_mapping[0x0000000000000000000000000000000000000001]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000010", + "value_hint": "16", + "comparison_operator": "Equal" + }, + { + "slot": "0xc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428", + "offset": 0, + "var_name": "static_in_mapping2[17]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000053", + "value_hint": "83", + "comparison_operator": "Equal" + }, + { + "slot": "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", + "offset": 0, + "var_name": "static_in_mapping[0x5fbdb2315678afecb367f032d93f642f64180aa3]", + "var_type": "t_uint256", + "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value_hint": "uint256 Max Value", + "comparison_operator": "Equal" + }, + { + "slot": "0xe2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c", + "offset": 0, + "var_name": "static_in_mapping2[5]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002d", + "value_hint": "45", + "comparison_operator": "Equal" + } + ], + "critical_events": [], + "unvalidated_metadata": { + "author_name": "Author", + "description": "System Description", + "hardfork": [ + "paris", + "shanghai" + ], + "audit_report": "https://example.org/report.pdf", + "source_url": "https://github.com/source/code", + "security_contact": "security@example.org" + } +} \ No newline at end of file diff --git a/tests/test_decoding.rs b/tests/test_decoding.rs index eddc2293..aac88751 100644 --- a/tests/test_decoding.rs +++ b/tests/test_decoding.rs @@ -31,12 +31,17 @@ mod tests { .unwrap(); let pretty_printer = PrettyPrinter::new(&empty_config, None); let mut global_state = ContractState::new_with_address(&trace_w_a.address, &pretty_printer); - let forge_inspect = forge_inspect::ForgeInspect::generate_and_parse_layout( + let fi_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( Path::new("tests/Contracts"), contract_name, None, ); - global_state.add_forge_inspect(&forge_inspect); + let fi_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( + Path::new("tests/Contracts"), + contract_name, + None, + ); + global_state.add_forge_inspect(&fi_layout, &fi_ir); global_state .record_traces(&empty_config, vec![trace_w_a.clone()]) .unwrap(); @@ -88,6 +93,7 @@ mod tests { assert_eq!(generated_result.len(), expected_result.len()); for i in 0..generated_result.len() { + // println!("{:?}", generated_result[i]); assert_eq!(generated_result[i], expected_result[i]); } } diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index b62b7da7..9208710a 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -550,7 +550,7 @@ mod tests { println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); // Uncomment to regenerate expected files - // std::fs::copy(factory_outfile.path(), Path::new("tests/expected_dvfs/PullPayment.dvf.json")).unwrap(); + std::fs::copy(factory_outfile.path(), Path::new("tests/expected_dvfs/PullPaymentGIO.dvf.json")).unwrap(); // Remove the extra byte again truncate_last_byte(src_name); @@ -790,6 +790,12 @@ mod tests { expected: String::from("tests/expected_dvfs/Lib.dvf.json"), }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_StaticInMapping.s.sol"), + contract: String::from("StaticInMapping"), + expected: String::from("tests/expected_dvfs/StaticInMapping.dvf.json"), + }); + testcases.push(TestCaseE2E { script: String::from("script/Deploy_0.s.sol"), contract: String::from("BytesMapping"), From ea9cee6993cd5925db21311b3f06c9e2755eec94 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Thu, 24 Jul 2025 16:43:05 +0200 Subject: [PATCH 05/10] Fix formatting --- lib/bytecode_verification/parse_json.rs | 2 +- lib/state/contract_state.rs | 11 ++++++++--- lib/web3.rs | 7 +++++-- src/dvf.rs | 22 ++++++++++++---------- tests/test_end_to_end.rs | 6 +++++- 5 files changed, 31 insertions(+), 17 deletions(-) diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index e36b22b9..7cf68506 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -28,7 +28,7 @@ use alloy::json_abi::Event; use foundry_compilers::artifacts::Error as CompilerError; use foundry_compilers::artifacts::{ BytecodeHash, BytecodeObject, Contract as ContractArt, ContractDefinition, ContractKind, - DeployedBytecode, Node as EAstNode, NodeType, SolcInput, SourceFile + DeployedBytecode, Node as EAstNode, NodeType, SolcInput, SourceFile, }; use foundry_compilers::buildinfo::BuildInfo as BInfo; use foundry_compilers::CompilerOutput; diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index 97e1bfcf..b98016f3 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -107,7 +107,7 @@ impl<'a> ContractState<'a> { format!("0x{:064x}", num) } else { // fallback, maybe a variable reference - val.to_string() + val.to_string() } } @@ -333,7 +333,10 @@ impl<'a> ContractState<'a> { if let Some(key_in) = key { let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { - println!("Mapping usages does not contain index {:?}, entry slot {:?}", index, target_slot); + println!( + "Mapping usages does not contain index {:?}, entry slot {:?}", + index, target_slot + ); let mut usage_set = HashSet::new(); usage_set.insert((key_in, *target_slot)); self.mapping_usages.insert(index, usage_set); @@ -661,7 +664,9 @@ impl<'a> ContractState<'a> { // the last 32 bytes correspond to a slot // we can still have false positives, so the --zerovalue option // should be used with care - if self.has_inplace_encoding(&key_type) && sorted_key.trim_start_matches("0x").len() > 64 { + if self.has_inplace_encoding(&key_type) + && sorted_key.trim_start_matches("0x").len() > 64 + { continue; } diff --git a/lib/web3.rs b/lib/web3.rs index 7acb32c6..71dd010b 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -1572,9 +1572,12 @@ impl StorageSnapshot { let slot = stack[stack.len() - 1]; last_store.insert(slot, value); //last_storage.insert(log.depth, last_store); - + // fruspa probably modify here - println!("add_trace found opcode SSTORE slot {:?} value {:?}", slot, value); + println!( + "add_trace found opcode SSTORE slot {:?} value {:?}", + slot, value + ); } // Save upon successful return diff --git a/src/dvf.rs b/src/dvf.rs index 307b0fe0..fe7de24f 100644 --- a/src/dvf.rs +++ b/src/dvf.rs @@ -1025,16 +1025,18 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> { &mut pc, &progress_mode, ); - let fi_impl_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( - &imp_path, - implementation_name, - tmp_project_info.absolute_path.clone(), - ); - let fi_impl_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( - &imp_path, - implementation_name, - tmp_project_info.absolute_path.clone(), - ); + let fi_impl_layout = + forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( + &imp_path, + implementation_name, + tmp_project_info.absolute_path.clone(), + ); + let fi_impl_ir = + forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( + &imp_path, + implementation_name, + tmp_project_info.absolute_path.clone(), + ); contract_state.add_forge_inspect(&fi_impl_layout, &fi_impl_ir); storage.extend(tmp_project_info.storage.clone()); diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index 9208710a..7b114dd2 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -550,7 +550,11 @@ mod tests { println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); // Uncomment to regenerate expected files - std::fs::copy(factory_outfile.path(), Path::new("tests/expected_dvfs/PullPaymentGIO.dvf.json")).unwrap(); + std::fs::copy( + factory_outfile.path(), + Path::new("tests/expected_dvfs/PullPaymentGIO.dvf.json"), + ) + .unwrap(); // Remove the extra byte again truncate_last_byte(src_name); From 50d59dee8495d38a63cb462c290b5bb17de0502f Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Thu, 24 Jul 2025 17:07:17 +0200 Subject: [PATCH 06/10] Fix formatting --- tests/Contracts/src/StaticInMapping.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Contracts/src/StaticInMapping.sol b/tests/Contracts/src/StaticInMapping.sol index 16127ccf..503ecf84 100644 --- a/tests/Contracts/src/StaticInMapping.sol +++ b/tests/Contracts/src/StaticInMapping.sol @@ -13,14 +13,14 @@ contract StaticInMapping { static_in_mapping[address(this)] = 2 ** 256 - 1; static_in_mapping[msg.sender] = 5; - static_in_mapping2[2+3] = 45; + static_in_mapping2[2 + 3] = 45; } function assign() external { // compiler computes sha3 of key static_in_mapping[address(1)] = 16; - static_in_mapping2[1+15] = 42; - static_in_mapping2[1+16] = 81+2; + static_in_mapping2[1 + 15] = 42; + static_in_mapping2[1 + 16] = 81 + 2; } function dummy() external {} From df35568b214b4108d73e3b9a7e1b20b21b07a93a Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 25 Jul 2025 14:06:11 +0200 Subject: [PATCH 07/10] Update tests, clean up --- lib/state/contract_state.rs | 6 +- lib/web3.rs | 27 +- src/gentest.rs | 3 +- .../script/Deploy_LinkedLibraries.sh | 7 +- tests/Contracts/src/StaticInMapping.sol | 14 + tests/data/result_StaticInMapping.json | 201 +- tests/data/trace_StaticInMapping.json | 38333 +++++++++++++++- tests/expected_dvfs/StaticInMapping.dvf.json | 96 +- tests/test_decoding.rs | 1 - tests/test_end_to_end.rs | 10 +- 10 files changed, 37781 insertions(+), 917 deletions(-) diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index b98016f3..b71864b1 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -174,7 +174,7 @@ impl<'a> ContractState<'a> { } } - if let Some(caps) = re_sstore.captures(line) { + if let Some(_caps) = re_sstore.captures(line) { if let (Some(last_key_), Some(last_slot_)) = (last_key.clone(), last_slot.clone()) { // println!( // "Captured key string {:?} slot string {:?}", @@ -408,7 +408,7 @@ impl<'a> ContractState<'a> { let mut critical_storage_variables = Vec::::new(); - // @fruspa forge inspect state variables + // forge inspect state vddariables for state_variable in self.state_variables.clone() { println!("stor var {:?}", state_variable); critical_storage_variables.extend(self.get_critical_variable( @@ -419,7 +419,7 @@ impl<'a> ContractState<'a> { )?); } - // @fruspa extra special storage from ast parsing + // extra storage variables extracted from AST parsing let mut storage = default_values.storage.clone(); storage.extend(pi_storage.to_owned()); for state_variable in &storage { diff --git a/lib/web3.rs b/lib/web3.rs index 71dd010b..2767a3f6 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -31,14 +31,22 @@ const NUM_STORAGE_QUERIES: u64 = 32; const LARGE_BLOCK_RANGE: u64 = 100000; mod pathological_rpc_deserde { - use serde::{self, Deserialize}; + use serde::{de::Error, Deserialize}; pub fn deserialize<'de, D>(deserializer: D) -> Result where - D: super::Deserializer<'de>, + D: serde::Deserializer<'de>, { - let s = String::deserialize(deserializer)?; - u64::from_str_radix(s.trim_start_matches("0x"), 16).map_err(serde::de::Error::custom) + let value = serde_json::Value::deserialize(deserializer)?; + match value { + serde_json::Value::Number(n) => { + n.as_u64().ok_or_else(|| Error::custom("Invalid number")) + } + serde_json::Value::String(s) => { + u64::from_str_radix(s.trim_start_matches("0x"), 16).map_err(Error::custom) + } + _ => Err(Error::custom("Expected a hex string or integer")), + } } } @@ -258,7 +266,7 @@ pub fn get_eth_debug_trace( "id": 1 }); let result = send_blocking_web3_post(config, &request_body)?; - println!("Sending to {:?}", config.get_rpc_url()?); + // println!("Sending to {:?}", config.get_rpc_url()?); // Parse the response as a JSON list let trace: DefaultFrame = serde_json::from_value(result)?; @@ -1573,11 +1581,10 @@ impl StorageSnapshot { last_store.insert(slot, value); //last_storage.insert(log.depth, last_store); - // fruspa probably modify here - println!( - "add_trace found opcode SSTORE slot {:?} value {:?}", - slot, value - ); + // println!( + // "add_trace found opcode SSTORE slot {:?} value {:?}", + // slot, value + // ); } // Save upon successful return diff --git a/src/gentest.rs b/src/gentest.rs index 82967c31..2e656ec1 100644 --- a/src/gentest.rs +++ b/src/gentest.rs @@ -52,6 +52,7 @@ fn main() { Arg::new("chainid") .long("chainid") .help("Chain ID") + .value_parser(clap::value_parser!(u64)) .action(ArgAction::Set), ) .get_matches(); @@ -68,7 +69,7 @@ fn gen_test(matches: &ArgMatches) -> Result<(), ValidationError> { let tx_id = matches.get_one::("txid").unwrap().to_string(); let name = matches.get_one::("name").unwrap().to_string(); - let chain_id = *matches.get_one::("chainid").unwrap_or(&31337); + let chain_id = *matches.get_one::("chainid").unwrap_or(&1337); config.set_chain_id(chain_id)?; let trace_w_a = web3::get_eth_debug_trace(&config, &tx_id)?; diff --git a/tests/Contracts/script/Deploy_LinkedLibraries.sh b/tests/Contracts/script/Deploy_LinkedLibraries.sh index 1af38069..20ddd998 100644 --- a/tests/Contracts/script/Deploy_LinkedLibraries.sh +++ b/tests/Contracts/script/Deploy_LinkedLibraries.sh @@ -34,9 +34,4 @@ CALCULATOR_ADDR=$(forge create src/linked_libraries/Calculator.sol:Calculator \ --broadcast \ --json | jq -r .deployedTo) -echo "Deployed Calculator to: $CALCULATOR_ADDR" - -# clean up because we want to test that the DV tool is able to generate the build files -forge clean - - +echo "Deployed Calculator to: $CALCULATOR_ADDR" \ No newline at end of file diff --git a/tests/Contracts/src/StaticInMapping.sol b/tests/Contracts/src/StaticInMapping.sol index 503ecf84..b4e554a0 100644 --- a/tests/Contracts/src/StaticInMapping.sol +++ b/tests/Contracts/src/StaticInMapping.sol @@ -1,9 +1,12 @@ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; +/// mix of static-type key mapping assignments, dynamic-type key mapping assignments, and others contract StaticInMapping { mapping(address => uint256) static_in_mapping; mapping(uint256 => uint256) static_in_mapping2; + uint256 someInt; + uint64[6][] dynamicStatic; constructor() { // static_in_mapping[address(this)] = 2 ** 128 - 1; @@ -14,6 +17,15 @@ contract StaticInMapping { static_in_mapping[address(this)] = 2 ** 256 - 1; static_in_mapping[msg.sender] = 5; static_in_mapping2[2 + 3] = 45; + + if (static_in_mapping2[5] == 45) { + someInt = 88; + static_in_mapping[address(23)] = 100; + } + uint64[6] memory x = [uint64(1), 2, 3, 4, 5, 6]; + dynamicStatic.push(x); + uint64[6] memory y = [uint64(0), 0, 10 ** 18, 0, 0, 0]; + dynamicStatic.push(y); } function assign() external { @@ -21,6 +33,8 @@ contract StaticInMapping { static_in_mapping[address(1)] = 16; static_in_mapping2[1 + 15] = 42; static_in_mapping2[1 + 16] = 81 + 2; + + someInt = 100; } function dummy() external {} diff --git a/tests/data/result_StaticInMapping.json b/tests/data/result_StaticInMapping.json index c31e1612..b45da8cd 100644 --- a/tests/data/result_StaticInMapping.json +++ b/tests/data/result_StaticInMapping.json @@ -1,56 +1,191 @@ [ { - "slot": "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", + "slot": "0x2", "offset": 0, - "var_name": "static_in_mapping[0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6][0]", - "var_type": "t_uint128", - "value": "0xffffffffffffffffffffffffffffffff", - "value_hint": "3.40282366920938463463374607431768211455 * 10^38", + "var_name": "someInt", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000058", + "value_hint": "88", "comparison_operator": "Equal" }, { - "slot": "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "offset": 16, - "var_name": "static_in_mapping[0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6][1]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" + "slot": "0x3", + "offset": 0, + "var_name": "dynamicStatic.length", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000002", + "value_hint": "2", + "comparison_operator": "Equal" }, { - "slot": "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", + "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", "offset": 0, - "var_name": "static_in_mapping[0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6][2]", - "var_type": "t_uint128", - "value": "0xffffffffffffffffffffffffffffffff", - "value_hint": "3.40282366920938463463374607431768211455 * 10^38", + "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value_hint": "5", "comparison_operator": "Equal" }, { - "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "slot": "0x755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb640983", "offset": 0, - "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266][0]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" + "var_name": "static_in_mapping2[16]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" }, { - "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "slot": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "offset": 0, + "var_name": "static_in_mapping[0x0000000000000000000000000000000000000001]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 0, + "var_name": "dynamicStatic[0][0]", + "var_type": "t_uint64", + "value": "0x0000000000000001", + "value_hint": "1", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 8, + "var_name": "dynamicStatic[0][1]", + "var_type": "t_uint64", + "value": "0x0000000000000002", + "value_hint": "2", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", "offset": 16, - "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266][1]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000005", + "var_name": "dynamicStatic[0][2]", + "var_type": "t_uint64", + "value": "0x0000000000000003", + "value_hint": "3", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 24, + "var_name": "dynamicStatic[0][3]", + "var_type": "t_uint64", + "value": "0x0000000000000004", + "value_hint": "4", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "offset": 0, + "var_name": "dynamicStatic[0][4]", + "var_type": "t_uint64", + "value": "0x0000000000000005", "value_hint": "5", "comparison_operator": "Equal" }, { - "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da723", + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "offset": 8, + "var_name": "dynamicStatic[0][5]", + "var_type": "t_uint64", + "value": "0x0000000000000006", + "value_hint": "6", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", "offset": 0, - "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266][2]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" + "var_name": "dynamicStatic[1][0]", + "var_type": "t_uint64", + "value": "0x0000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "offset": 8, + "var_name": "dynamicStatic[1][1]", + "var_type": "t_uint64", + "value": "0x0000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "offset": 16, + "var_name": "dynamicStatic[1][2]", + "var_type": "t_uint64", + "value": "0x0de0b6b3a7640000", + "value_hint": "1. * 10^18", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "offset": 24, + "var_name": "dynamicStatic[1][3]", + "var_type": "t_uint64", + "value": "0x0000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "offset": 0, + "var_name": "dynamicStatic[1][4]", + "var_type": "t_uint64", + "value": "0x0000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "offset": 8, + "var_name": "dynamicStatic[1][5]", + "var_type": "t_uint64", + "value": "0x0000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428", + "offset": 0, + "var_name": "static_in_mapping2[17]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value_hint": "0", + "comparison_operator": "Equal" + }, + { + "slot": "0xdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3", + "offset": 0, + "var_name": "static_in_mapping[0x0000000000000000000000000000000000000017]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000064", + "value_hint": "100", + "comparison_operator": "Equal" + }, + { + "slot": "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", + "offset": 0, + "var_name": "static_in_mapping[0x5fbdb2315678afecb367f032d93f642f64180aa3]", + "var_type": "t_uint256", + "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value_hint": "uint256 Max Value", + "comparison_operator": "Equal" + }, + { + "slot": "0xe2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c", + "offset": 0, + "var_name": "static_in_mapping2[5]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002d", + "value_hint": "45", + "comparison_operator": "Equal" } ] \ No newline at end of file diff --git a/tests/data/trace_StaticInMapping.json b/tests/data/trace_StaticInMapping.json index cb10a612..a17aeca0 100644 --- a/tests/data/trace_StaticInMapping.json +++ b/tests/data/trace_StaticInMapping.json @@ -1,1448 +1,38071 @@ { "trace": { "failed": false, - "gas": "0x1ec11", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", + "gas": 312606, + "returnValue": "6080604052348015600f57600080fd5b506004361060325760003560e01c806312ae639714603757806332e43a111460b6575b600080fd5b60b660107fada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343000815000a", "structLogs": [ { - "depth": 1, - "gas": 71013, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 341297, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 71010, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 341294, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 71007, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 341291, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 70995, + "pc": 5, + "op": "CALLVALUE", + "gas": 341279, "gasCost": 2, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] + ] }, { - "depth": 1, - "gas": 70993, + "pc": 6, + "op": "DUP1", + "gas": 341277, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 70990, + "pc": 7, + "op": "ISZERO", + "gas": 341274, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" ] }, { - "depth": 1, - "gas": 70987, + "pc": 8, + "op": "PUSH2", + "gas": 341271, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 8, - "stack": [ - "0x0", - "0x1" ] }, { - "depth": 1, - "gas": 70984, + "pc": 11, + "op": "JUMPI", + "gas": 341268, "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 10, - "stack": [ - "0x0", - "0x1", - "0xf" ] }, { - "depth": 1, - "gas": 70974, + "pc": 16, + "op": "JUMPDEST", + "gas": 341258, "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 15, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 70973, + "pc": 17, + "op": "POP", + "gas": 341257, "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 16, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 70971, + "pc": 18, + "op": "ADDRESS", + "gas": 341255, "gasCost": 2, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADDRESS", - "pc": 17, - "stack": [] + ] }, { - "depth": 1, - "gas": 70969, + "pc": 19, + "op": "PUSH1", + "gas": 341253, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [ - "0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6" ] }, { - "depth": 1, - "gas": 70966, + "pc": 21, + "op": "SWAP1", + "gas": 341250, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5fbdb2315678afecb367f032d93f642f64180aa3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 20, - "stack": [ - "0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0x0" ] }, { - "depth": 1, - "gas": 70963, + "pc": 22, + "op": "DUP2", + "gas": 341247, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 21, - "stack": [ - "0x0", - "0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6" ] }, { - "depth": 1, - "gas": 70960, + "pc": 23, + "op": "MSTORE", + "gas": 341244, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x5fbdb2315678afecb367f032d93f642f64180aa3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 22, - "stack": [ - "0x0", - "0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0x0" ] }, { - "depth": 1, - "gas": 70957, + "pc": 24, + "op": "PUSH1", + "gas": 341241, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 23, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 70954, - "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], + "pc": 26, "op": "DUP2", - "pc": 25, + "gas": 341238, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x20" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 70951, + "pc": 27, + "op": "DUP2", + "gas": 341235, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 26, + "depth": 1, "stack": [ "0x0", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 70948, - "gasCost": 3, + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], + ] + }, + { + "pc": 28, "op": "MSTORE", - "pc": 27, + "gas": 341232, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 70945, - "gasCost": 3, + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 28, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 70942, + "pc": 29, + "op": "PUSH1", + "gas": 341229, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x20" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], + ] + }, + { + "pc": 31, "op": "DUP1", - "pc": 30, + "gas": 341226, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 70939, + "pc": 32, + "op": "DUP4", + "gas": 341223, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 31, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", "0x40" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 70936, - "gasCost": 42, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], + "pc": 33, "op": "KECCAK256", - "pc": 32, + "gas": 341220, + "gasCost": 42, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", "0x40", "0x0" - ] - }, - { - "depth": 1, - "gas": 70894, - "gasCost": 3, + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 33, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943" ] }, { - "depth": 1, - "gas": 70891, + "pc": 34, + "op": "PUSH1", + "gas": 341178, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 35, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0x1" - ] - }, - { - "depth": 1, - "gas": 70888, - "gasCost": 3, + "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 36, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0x1", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943" ] }, { - "depth": 1, - "gas": 70885, + "pc": 36, + "op": "NOT", + "gas": 341175, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 37, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944" - ] - }, - { - "depth": 1, - "gas": 70882, - "gasCost": 2100, + "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", + "0x0" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 38, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944" ] }, { - "depth": 1, - "gas": 68782, + "pc": 37, + "op": "SWAP1", + "gas": 341172, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 39, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0" + "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 38, + "op": "SSTORE", + "gas": 341169, + "gasCost": 22100, "depth": 1, - "gas": 68779, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "op": "PUSH1", - "pc": 41, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0x1" - ] + "storage": { + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + } }, { + "pc": 39, + "op": "CALLER", + "gas": 319069, + "gasCost": 2, "depth": 1, - "gas": 68776, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 43, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0x1", - "0x1" ] }, { - "depth": 1, - "gas": 68773, + "pc": 40, + "op": "DUP4", + "gas": 319067, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 45, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0x1", - "0x1", - "0x80" + "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68770, + "pc": 41, + "op": "MSTORE", + "gas": 319064, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 46, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0x1", - "0x100000000000000000000000000000000" + "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0x0" + ], + "memory": [ + "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68767, + "pc": 42, + "op": "DUP1", + "gas": 319061, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x20", + "0x40" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 47, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0xffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 68764, + "pc": 43, + "op": "DUP4", + "gas": 319058, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 48, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + "0x40" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 44, + "op": "KECCAK256", + "gas": 319055, + "gasCost": 42, "depth": 1, - "gas": 68761, - "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 49, "stack": [ "0x0", + "0x20", + "0x40", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", "0x0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68758, + "pc": 45, + "op": "PUSH1", + "gas": 319013, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 50, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68755, + "pc": 47, + "op": "SWAP1", + "gas": 319010, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 51, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" + "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "0x5" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68752, + "pc": 48, + "op": "DUP2", + "gas": 319007, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 53, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0x1" + "0x5", + "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68749, + "pc": 49, + "op": "SWAP1", + "gas": 319004, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 55, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0x1", - "0x1" + "0x5", + "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "0x5" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 50, + "op": "SSTORE", + "gas": 319001, + "gasCost": 22100, "depth": 1, - "gas": 68746, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40", + "0x5", + "0x5", + "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "op": "SHL", - "pc": 57, + "storage": { + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + } + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 296901, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0x1", - "0x1", - "0x80" + "0x5" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68743, + "pc": 53, + "op": "PUSH32", + "gas": 296898, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 58, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0x1", - "0x100000000000000000000000000000000" + "0x5", + "0x2d" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 86, + "op": "SSTORE", + "gas": 296895, + "gasCost": 22100, "depth": 1, - "gas": 68740, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40", + "0x5", + "0x2d", + "0xe2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "op": "SWAP1", - "pc": 59, + "storage": { + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 87, + "op": "PUSH1", + "gas": 274795, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff" + "0x5" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68737, + "pc": 89, + "op": "PUSH1", + "gas": 274792, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 60, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff", - "0x0" + "0x5", + "0x58" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68734, + "pc": 91, + "op": "SWAP1", + "gas": 274789, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 61, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x58", + "0x2" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 68731, + "pc": 92, + "op": "DUP2", + "gas": 274786, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 62, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x58" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 93, + "op": "SSTORE", + "gas": 274783, + "gasCost": 22100, "depth": 1, - "gas": 68728, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40", + "0x5", + "0x2", + "0x58", + "0x2" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "op": "SWAP3", - "pc": 63, + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 94, + "op": "PUSH1", + "gas": 252683, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 96, + "op": "PUSH32", + "gas": 252680, + "gasCost": 3, "depth": 1, - "gas": 68725, - "gasCost": 20000, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 64, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520944" + "0x5", + "0x2", + "0x64" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 129, + "op": "SSTORE", + "gas": 252677, + "gasCost": 22100, "depth": 1, - "gas": 48725, - "gasCost": 3, + "stack": [ + "0x0", + "0x20", + "0x40", + "0x5", + "0x2", + "0x64", + "0xdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 130, "op": "DUP3", - "pc": 65, + "gas": 230577, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 48722, - "gasCost": 2100, + "0x5", + "0x2" + ], "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 66, - "stack": [ - "0x0", - "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943" ] }, { - "depth": 1, - "gas": 46622, + "pc": 131, + "op": "MLOAD", + "gas": 230574, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 67, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" + "0x5", + "0x2", + "0x40" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 46619, + "pc": 132, + "op": "PUSH1", + "gas": 230571, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 68, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0x0" + "0x5", + "0x2", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 46616, + "pc": 134, + "op": "DUP2", + "gas": 230568, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 69, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x80", + "0xc0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 46613, + "pc": 135, + "op": "ADD", + "gas": 230565, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 70, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x80", + "0xc0", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "depth": 1, - "gas": 46610, + "pc": 136, + "op": "DUP5", + "gas": 230562, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 71, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x80", + "0x140" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 137, + "op": "MSTORE", + "gas": 230559, + "gasCost": 3, "depth": 1, - "gas": 46607, - "gasCost": 20000, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 72, "stack": [ "0x0", + "0x20", "0x40", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff", - "0xe0372278de572bbd5d63248f2b77bfb55ce05ca08cd67fd2db16096cd1520943" + "0x5", + "0x2", + "0x80", + "0x140", + "0x40" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" ] }, { + "pc": 138, + "op": "PUSH1", + "gas": 230556, + "gasCost": 3, "depth": 1, - "gas": 26607, - "gasCost": 2, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLER", - "pc": 73, "stack": [ "0x0", + "0x20", "0x40", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140" ] }, { - "depth": 1, - "gas": 26605, + "pc": 140, + "op": "DUP1", + "gas": 230553, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 74, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xffffffffffffffffffffffffffffffff", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266" + "0x5", + "0x2", + "0x80", + "0x1" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140" ] }, { - "depth": 1, - "gas": 26602, + "pc": 141, + "op": "DUP3", + "gas": 230550, "gasCost": 3, - "memory": [ - "0000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 75, + "depth": 1, "stack": [ "0x0", + "0x20", "0x40", - "0xffffffffffffffffffffffffffffffff", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0x0" + "0x5", + "0x2", + "0x80", + "0x1", + "0x1" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140" ] }, { + "pc": 142, + "op": "MSTORE", + "gas": 230547, + "gasCost": 9, "depth": 1, - "gas": 26599, - "gasCost": 3, - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 76, "stack": [ "0x0", + "0x20", "0x40", - "0xffffffffffffffffffffffffffffffff" + "0x5", + "0x2", + "0x80", + "0x1", + "0x1", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140" ] }, { + "pc": 143, + "op": "SWAP5", + "gas": 230538, + "gasCost": 3, "depth": 1, - "gas": 26596, - "gasCost": 42, + "stack": [ + "0x0", + "0x20", + "0x40", + "0x5", + "0x2", + "0x80", + "0x1" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 77, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x40", - "0x0" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "depth": 1, - "gas": 26554, + "pc": 144, + "op": "DUP2", + "gas": 230535, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80", + "0x20" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 78, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { + "pc": 145, + "op": "ADD", + "gas": 230532, + "gasCost": 3, "depth": 1, - "gas": 26551, - "gasCost": 2100, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80", + "0x20", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 79, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "depth": 1, - "gas": 24451, + "pc": 146, + "op": "DUP3", + "gas": 230529, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80", + "0xa0" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 80, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x0" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "depth": 1, - "gas": 24448, + "pc": 147, + "op": "SWAP1", + "gas": 230526, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80", + "0xa0", + "0x2" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 82, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x0", - "0x5" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { + "pc": 148, + "op": "MSTORE", + "gas": 230523, + "gasCost": 6, "depth": 1, - "gas": 24445, - "gasCost": 3, - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 84, "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", "0x0", + "0x1", + "0x40", "0x5", - "0x80" + "0x2", + "0x80", + "0x2", + "0xa0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "depth": 1, - "gas": 24442, + "pc": 149, + "op": "PUSH1", + "gas": 230517, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 85, - "stack": [ - "0xffffffffffffffffffffffffffffffff", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x0", - "0x500000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" ] }, { - "depth": 1, - "gas": 24439, + "pc": 151, + "op": "SWAP4", + "gas": 230514, "gasCost": 3, - "memory": [ + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x40", + "0x5", + "0x2", + "0x80", + "0x3" + ], + "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 86, + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" + ] + }, + { + "pc": 152, + "op": "DUP2", + "gas": 230511, + "gasCost": 3, + "depth": 1, "stack": [ - "0x500000000000000000000000000000000", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", "0x0", - "0xffffffffffffffffffffffffffffffff" + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x40" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" ] }, { - "depth": 1, - "gas": 24436, + "pc": 153, + "op": "ADD", + "gas": 230508, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x40", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 87, - "stack": [ - "0x500000000000000000000000000000000", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x0" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" ] }, { - "depth": 1, - "gas": 24433, + "pc": 154, + "op": "DUP5", + "gas": 230505, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0xc0" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" + ] + }, + { + "pc": 155, "op": "SWAP1", - "pc": 88, + "gas": 230502, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x500000000000000000000000000000000" + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0xc0", + "0x3" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" ] }, { + "pc": 156, + "op": "MSTORE", + "gas": 230499, + "gasCost": 6, "depth": 1, - "gas": 24430, - "gasCost": 3, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x3", + "0xc0" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 89, + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" + ] + }, + { + "pc": 157, + "op": "PUSH1", + "gas": 230493, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", - "0x500000000000000000000000000000000", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + "0x1", + "0x3", + "0x5", + "0x2", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003" ] }, { - "depth": 1, - "gas": 24427, + "pc": 159, + "op": "PUSH1", + "gas": 230490, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x4" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 90, - "stack": [ - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x500000000000000000000000000000000", - "0x0" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003" ] }, { - "depth": 1, - "gas": 24424, + "pc": 161, + "op": "DUP3", + "gas": 230487, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x4", + "0x60" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 91, - "stack": [ - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x500000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003" ] }, { + "pc": 162, + "op": "ADD", + "gas": 230484, + "gasCost": 3, "depth": 1, - "gas": 24421, - "gasCost": 20000, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x4", + "0x60", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 92, - "stack": [ - "0x500000000000000000000000000000000", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003" ] }, { + "pc": 163, + "op": "MSTORE", + "gas": 230481, + "gasCost": 6, "depth": 1, - "gas": 4421, - "gasCost": 3, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x4", + "0xe0" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 93, - "stack": [] + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003" + ] }, { - "depth": 1, - "gas": 4418, + "pc": 164, + "op": "PUSH1", + "gas": 230475, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 95, - "stack": [ - "0x16" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" ] }, { - "depth": 1, - "gas": 4415, + "pc": 166, + "op": "DUP2", + "gas": 230472, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 96, - "stack": [ - "0x16", - "0x16" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" ] }, { - "depth": 1, - "gas": 4412, + "pc": 167, + "op": "ADD", + "gas": 230469, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x80", + "0x80" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 98, - "stack": [ - "0x16", - "0x16", - "0x69" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" ] }, { + "pc": 168, + "op": "SWAP3", + "gas": 230466, + "gasCost": 3, "depth": 1, - "gas": 4409, - "gasCost": 6, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x5", + "0x2", + "0x80", + "0x100" + ], "memory": [ "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 100, - "stack": [ - "0x16", - "0x16", - "0x69", - "0x0" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" ] }, { - "depth": 1, - "gas": 4403, + "pc": 169, + "op": "SWAP1", + "gas": 230463, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x100", + "0x2", + "0x80", + "0x5" + ], "memory": [ - "6080604052600080fdfea164736f6c6343000815000a6ab8827279cfffb92266", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 101, - "stack": [ - "0x16" + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" ] }, { + "pc": 170, + "op": "SWAP3", + "gas": 230460, + "gasCost": 3, "depth": 1, - "gas": 4400, - "gasCost": 0, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x100", + "0x2", + "0x5", + "0x80" + ], "memory": [ - "6080604052600080fdfea164736f6c6343000815000a6ab8827279cfffb92266", + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" + ] + }, + { + "pc": 171, + "op": "MSTORE", + "gas": 230457, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x5", + "0x100" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004" + ] + }, + { + "pc": 172, + "op": "PUSH1", + "gas": 230451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 174, + "op": "PUSH1", + "gas": 230448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 176, + "op": "DUP4", + "gas": 230445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0xa0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 177, + "op": "ADD", + "gas": 230442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0xa0", + "0x80" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 178, + "op": "DUP2", + "gas": 230439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0x120" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 179, + "op": "SWAP1", + "gas": 230436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0x120", + "0x6" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 180, + "op": "MSTORE", + "gas": 230433, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0x6", + "0x120" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005" + ] + }, + { + "pc": 181, + "op": "DUP4", + "gas": 230427, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 182, + "op": "SLOAD", + "gas": 230424, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0x3" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 183, + "op": "SWAP5", + "gas": 228324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x3", + "0x80", + "0x2", + "0x6", + "0x0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 184, + "op": "DUP6", + "gas": 228321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3", + "0x80", + "0x2", + "0x6", + "0x1" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 185, + "op": "ADD", + "gas": 228318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3", + "0x80", + "0x2", + "0x6", + "0x1", + "0x0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 186, + "op": "DUP5", + "gas": 228315, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3", + "0x80", + "0x2", + "0x6", + "0x1" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 187, + "op": "SSTORE", + "gas": 228312, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3", + "0x80", + "0x2", + "0x6", + "0x1", + "0x3" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 188, + "op": "SWAP3", + "gas": 208312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3", + "0x80", + "0x2", + "0x6" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 189, + "op": "SWAP1", + "gas": 208309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x6", + "0x80", + "0x2", + "0x3" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 190, + "op": "SWAP5", + "gas": 208306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x6", + "0x80", + "0x3", + "0x2" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 191, + "op": "MSTORE", + "gas": 208303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2", + "0x0", + "0x6", + "0x80", + "0x3", + "0x0" + ], + "memory": [ + "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 192, + "op": "SWAP3", + "gas": 208300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2", + "0x0", + "0x6", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 193, + "op": "PUSH2", + "gas": 208297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x6", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 196, + "op": "SWAP3", + "gas": 208294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x6", + "0x2", + "0xef" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 197, + "op": "MUL", + "gas": 208291, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0x6", + "0x2", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 198, + "op": "PUSH32", + "gas": 208286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0x6", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 231, + "op": "ADD", + "gas": 208283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0x6", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 232, + "op": "SWAP1", + "gas": 208280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 233, + "op": "DUP4", + "gas": 208277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 234, + "op": "SWAP1", + "gas": 208274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x6", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 235, + "op": "PUSH2", + "gas": 208271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 238, + "op": "JUMP", + "gas": 208268, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6", + "0x171" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 369, + "op": "JUMPDEST", + "gas": 208260, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 370, + "op": "PUSH1", + "gas": 208259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 372, + "op": "DUP4", + "gas": 208256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 373, + "op": "ADD", + "gas": 208253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 374, + "op": "SWAP2", + "gas": 208250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 375, + "op": "DUP4", + "gas": 208247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 376, + "op": "SWAP1", + "gas": 208244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 377, + "op": "DUP3", + "gas": 208241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 378, + "op": "ISZERO", + "gas": 208238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 379, + "op": "PUSH2", + "gas": 208235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 382, + "op": "JUMPI", + "gas": 208232, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80", + "0x0", + "0x206" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 383, + "op": "SWAP2", + "gas": 208222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 384, + "op": "PUSH1", + "gas": 208219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 386, + "op": "MUL", + "gas": 208216, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x6", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 387, + "op": "DUP3", + "gas": 208211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 388, + "op": "ADD", + "gas": 208208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc0", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 208205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 208202, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 208201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 208198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 208195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x80", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 208192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 208189, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 208186, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 208176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 208173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 208170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 208167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 208164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 208161, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 208151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 208148, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 206048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 206045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 206042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 206039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 206036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 206033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 206030, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 206025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 206022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 206019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 206016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 206013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 206010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 206007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 206004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 206001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 205998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 205995, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 205990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 205987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 205984, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 185984, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 185982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 185979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 185976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x80", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 185973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xa0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 185970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 185967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x0", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 185964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 185961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 185958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x20", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 185955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x20", + "0x8", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 185952, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x20", + "0xf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 185947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 185944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 185941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 185938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 185935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 185932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 185929, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 185924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 185921, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 185913, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 185912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 185909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0xa0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 185906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0xa0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 185903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 185900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 185897, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 185887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 185884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0xa0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 185881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 185878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 185875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 185872, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x8", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 185812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 185809, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 185709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 185706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 185703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 185700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 185697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 185694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 185691, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0x10000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 185686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0xffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 185683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 185680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 185677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 185674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 185671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 185668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 185665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 185662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 185659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 185656, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x10000000000000000", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 185651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x20000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 185648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 185645, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2", + "0x20000000000000001", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000020000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 185545, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 185543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xa0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 185540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xa0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 185537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xa0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 185534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 185531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 185528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x8", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 185525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 185522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 185519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x20", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 185516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x20", + "0x10", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 185513, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x20", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 185508, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 185505, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 185502, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 185499, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 185496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 185493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 185490, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 185485, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 185482, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 185474, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 185473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 185470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 185467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0xc0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 185464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 185461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 185458, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 185448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 185445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 185442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 185439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 185436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 185433, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x10", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 185373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 185370, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000020000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 185270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 185267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 185264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 185261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 185258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 185255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 185252, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 185247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0xffffffffffffffff00000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 185244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001", + "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 185241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x100000000000000000000000000000000", + "0x20000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 185238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 185235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 185232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 185229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 185226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 185223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 185220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 185217, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x100000000000000000000000000000000", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 185212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20000000000000001", + "0x300000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 185209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 185206, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3", + "0x300000000000000020000000000000001", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000300000000000000020000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 185106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 185104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 185101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 185098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xc0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 185095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 185092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 185089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x10", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 185086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 185083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 185080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x20", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 185077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x20", + "0x18", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 185074, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x20", + "0x1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 185069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 185066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 185063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 185060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 185057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 185054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 185051, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 185046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 185043, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 185035, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 185034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 185031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0xe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 185028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0xe0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 185025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 185022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 185019, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 185009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 185006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0xe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 185003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 185000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 184997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 184994, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x18", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 184934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 184931, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000300000000000000020000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 184831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 184828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 184825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 184822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 184819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 184816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 184813, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 184808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0xffffffffffffffff000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 184805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001", + "0xffffffffffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 184802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1000000000000000000000000000000000000000000000000", + "0x300000000000000020000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 184799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 184796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 184793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 184790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 184787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 184784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 184781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 184778, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x1000000000000000000000000000000000000000000000000", + "0x4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 184773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x300000000000000020000000000000001", + "0x4000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 184770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x4000000000000000300000000000000020000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 184767, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4", + "0x4000000000000000300000000000000020000000000000001", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 184667, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 184665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xe0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 184662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 184659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0xe0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 184656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 184653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 184650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x18", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 184647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 184644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 184641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 184638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20", + "0x20", + "0x20", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 184635, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20", + "0x20", + "0x27" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 184630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x140", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 184627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 184624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 184621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 184618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 184615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 184612, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 184607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 184604, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 184596, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 184595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 184592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 184589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x100", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 184586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 184583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 184580, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 184570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 184567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 184564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 184561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 184558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 184555, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 184545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 184542, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 182442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 182439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 182436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 182433, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 182430, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 182427, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 182424, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 182419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 182416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 182413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 182410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 182407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 182404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 182401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 182398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 182395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 182392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 182389, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x1", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 182384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 182381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 182378, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5", + "0x5", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 162378, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 162376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 162373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 162370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x100", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 162367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x120" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 162364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 162361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x0", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 162358, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 162355, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 162352, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x20", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 162349, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x20", + "0x8", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 162346, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x20", + "0xf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 162341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 162338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 162335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 162332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0x0", + "0x140", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 162329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 162326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 162323, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 162318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 162315, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 162307, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 162306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 162303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x120" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 162300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x120", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 162297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 162294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 162291, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 162281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 162278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x120" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 162275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 162272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 162269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 162266, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x8", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 162206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 162203, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 162103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 162100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 162097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 162094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 162091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 162088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 162085, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0x10000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 162080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0xffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 162077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 162074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10000000000000000", + "0x5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 162071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 162068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 162065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 162062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 162059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 162056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 162053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 162050, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x10000000000000000", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 162045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x5", + "0x60000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 162042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 162039, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6", + "0x60000000000000005", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 161939, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 161937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x120", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 161934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x120" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 161931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x120", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 161928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 161925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 161922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x8", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 161919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 161916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 161913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x20", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 161910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x20", + "0x10", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 161907, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x20", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 161902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 161899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 161896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 161893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 161890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 161887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 161884, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 161879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 161876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 161868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 161867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 161864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 161861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 161858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 161855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 161852, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x1", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 161842, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 161841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 161838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 161835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 161832, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x0", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 472, + "op": "DUP3", + "gas": 161822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 473, + "op": "DUP2", + "gas": 161819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 161816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 477, + "op": "EXP", + "gas": 161813, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x10", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 478, + "op": "DUP2", + "gas": 161753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 479, + "op": "SLOAD", + "gas": 161750, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x100000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 480, + "op": "SWAP1", + "gas": 161650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x100000000000000000000000000000000", + "0x60000000000000005" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 481, + "op": "PUSH1", + "gas": 161647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 483, + "op": "PUSH1", + "gas": 161644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 485, + "op": "PUSH1", + "gas": 161641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 487, + "op": "SHL", + "gas": 161638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 488, + "op": "SUB", + "gas": 161635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 489, + "op": "MUL", + "gas": 161632, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x100000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 490, + "op": "NOT", + "gas": 161627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0xffffffffffffffff00000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 491, + "op": "AND", + "gas": 161624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 492, + "op": "SWAP1", + "gas": 161621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 493, + "op": "SSTORE", + "gas": 161618, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x60000000000000005", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 494, + "op": "PUSH1", + "gas": 161518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 496, + "op": "ADD", + "gas": 161515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x10", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 497, + "op": "PUSH1", + "gas": 161512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 499, + "op": "DUP2", + "gas": 161509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 500, + "op": "PUSH1", + "gas": 161506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x20", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 502, + "op": "ADD", + "gas": 161503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x20", + "0x18", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 503, + "op": "DIV", + "gas": 161500, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x20", + "0x1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 504, + "op": "SWAP3", + "gas": 161495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 505, + "op": "DUP4", + "gas": 161492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 506, + "op": "ADD", + "gas": 161489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 161486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 508, + "op": "PUSH1", + "gas": 161483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 510, + "op": "SUB", + "gas": 161480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 511, + "op": "MUL", + "gas": 161477, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 512, + "op": "PUSH2", + "gas": 161472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 515, + "op": "JUMP", + "gas": 161469, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 161461, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 161460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 161457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 161454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 161451, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x0", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 472, + "op": "DUP3", + "gas": 161441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 473, + "op": "DUP2", + "gas": 161438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 161435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 477, + "op": "EXP", + "gas": 161432, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x18", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 478, + "op": "DUP2", + "gas": 161372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 479, + "op": "SLOAD", + "gas": 161369, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1000000000000000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 480, + "op": "SWAP1", + "gas": 161269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1000000000000000000000000000000000000000000000000", + "0x60000000000000005" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 481, + "op": "PUSH1", + "gas": 161266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 483, + "op": "PUSH1", + "gas": 161263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 485, + "op": "PUSH1", + "gas": 161260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 487, + "op": "SHL", + "gas": 161257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 488, + "op": "SUB", + "gas": 161254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 489, + "op": "MUL", + "gas": 161251, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0x1000000000000000000000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 490, + "op": "NOT", + "gas": 161246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0xffffffffffffffff000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 491, + "op": "AND", + "gas": 161243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005", + "0xffffffffffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 492, + "op": "SWAP1", + "gas": 161240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x60000000000000005" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 493, + "op": "SSTORE", + "gas": 161237, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x60000000000000005", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 494, + "op": "PUSH1", + "gas": 161137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 496, + "op": "ADD", + "gas": 161134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x18", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 497, + "op": "PUSH1", + "gas": 161131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 499, + "op": "DUP2", + "gas": 161128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 500, + "op": "PUSH1", + "gas": 161125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 502, + "op": "ADD", + "gas": 161122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x20", + "0x20", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 503, + "op": "DIV", + "gas": 161119, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x20", + "0x27" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 504, + "op": "SWAP3", + "gas": 161114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x140", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 505, + "op": "DUP4", + "gas": 161111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 506, + "op": "ADD", + "gas": 161108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 161105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x1", + "0x140", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 508, + "op": "PUSH1", + "gas": 161102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 510, + "op": "SUB", + "gas": 161099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x20", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 511, + "op": "MUL", + "gas": 161096, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 512, + "op": "PUSH2", + "gas": 161091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 515, + "op": "JUMP", + "gas": 161088, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 161080, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 161079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 161076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 161073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 161070, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x1", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 516, + "op": "JUMPDEST", + "gas": 161060, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 517, + "op": "POP", + "gas": 161059, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 518, + "op": "JUMPDEST", + "gas": 161057, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 519, + "op": "POP", + "gas": 161056, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 520, + "op": "PUSH2", + "gas": 161054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 523, + "op": "SWAP3", + "gas": 161051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 524, + "op": "SWAP2", + "gas": 161048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 525, + "op": "POP", + "gas": 161045, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 526, + "op": "PUSH2", + "gas": 161043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 529, + "op": "JUMP", + "gas": 161040, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x216" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 534, + "op": "JUMPDEST", + "gas": 161032, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 535, + "op": "JUMPDEST", + "gas": 161031, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 536, + "op": "DUP1", + "gas": 161030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 537, + "op": "DUP3", + "gas": 161027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 538, + "op": "GT", + "gas": 161024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 539, + "op": "ISZERO", + "gas": 161021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 540, + "op": "PUSH2", + "gas": 161018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 543, + "op": "JUMPI", + "gas": 161015, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 530, + "op": "JUMPDEST", + "gas": 161005, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 161004, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 532, + "op": "SWAP1", + "gas": 161002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 533, + "op": "JUMP", + "gas": 160999, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 530, + "op": "JUMPDEST", + "gas": 160991, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 160990, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 532, + "op": "SWAP1", + "gas": 160988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xef", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 533, + "op": "JUMP", + "gas": 160985, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xef" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 239, + "op": "JUMPDEST", + "gas": 160977, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 240, + "op": "POP", + "gas": 160976, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 241, + "op": "PUSH1", + "gas": 160974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 243, + "op": "DUP1", + "gas": 160971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 244, + "op": "MLOAD", + "gas": 160968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 245, + "op": "PUSH1", + "gas": 160965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 247, + "op": "DUP2", + "gas": 160962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 248, + "op": "ADD", + "gas": 160959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0xc0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 249, + "op": "DUP3", + "gas": 160956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 250, + "op": "MSTORE", + "gas": 160953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x200", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 251, + "op": "PUSH1", + "gas": 160950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 253, + "op": "DUP1", + "gas": 160947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 254, + "op": "DUP3", + "gas": 160944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 255, + "op": "MSTORE", + "gas": 160941, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006" + ] + }, + { + "pc": 256, + "op": "PUSH1", + "gas": 160935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 258, + "op": "DUP3", + "gas": 160932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 259, + "op": "ADD", + "gas": 160929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x20", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 260, + "op": "DUP2", + "gas": 160926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 261, + "op": "SWAP1", + "gas": 160923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x160", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 262, + "op": "MSTORE", + "gas": 160920, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0x0", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 263, + "op": "PUSH8", + "gas": 160914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 272, + "op": "SWAP3", + "gas": 160911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x40", + "0x140", + "0x0", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 273, + "op": "DUP3", + "gas": 160908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xde0b6b3a7640000", + "0x140", + "0x0", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 274, + "op": "ADD", + "gas": 160905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xde0b6b3a7640000", + "0x140", + "0x0", + "0x40", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 275, + "op": "SWAP3", + "gas": 160902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xde0b6b3a7640000", + "0x140", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 276, + "op": "SWAP1", + "gas": 160899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x180", + "0x140", + "0x0", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 277, + "op": "SWAP3", + "gas": 160896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x180", + "0x140", + "0xde0b6b3a7640000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 278, + "op": "MSTORE", + "gas": 160893, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0xde0b6b3a7640000", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 279, + "op": "PUSH1", + "gas": 160887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 281, + "op": "DUP2", + "gas": 160884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x60" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 282, + "op": "ADD", + "gas": 160881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x60", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 283, + "op": "DUP3", + "gas": 160878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 284, + "op": "SWAP1", + "gas": 160875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1a0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 285, + "op": "MSTORE", + "gas": 160872, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x0", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ] + }, + { + "pc": 286, + "op": "PUSH1", + "gas": 160866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 288, + "op": "DUP2", + "gas": 160863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 289, + "op": "ADD", + "gas": 160860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x80", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 290, + "op": "DUP3", + "gas": 160857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 291, + "op": "SWAP1", + "gas": 160854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1c0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 292, + "op": "MSTORE", + "gas": 160851, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x0", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 293, + "op": "PUSH1", + "gas": 160845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 295, + "op": "DUP2", + "gas": 160842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0xa0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 296, + "op": "ADD", + "gas": 160839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0xa0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 297, + "op": "DUP3", + "gas": 160836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 298, + "op": "SWAP1", + "gas": 160833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x1e0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 299, + "op": "MSTORE", + "gas": 160830, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x0", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 160824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 302, + "op": "DUP1", + "gas": 160821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 303, + "op": "SLOAD", + "gas": 160818, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 304, + "op": "PUSH1", + "gas": 160718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 306, + "op": "DUP2", + "gas": 160715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 307, + "op": "ADD", + "gas": 160712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 308, + "op": "DUP3", + "gas": 160709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 309, + "op": "SSTORE", + "gas": 160706, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1", + "0x2", + "0x3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 310, + "op": "SWAP3", + "gas": 160606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x0", + "0x140", + "0x3", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 311, + "op": "MSTORE", + "gas": 160603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x1", + "0x140", + "0x3", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 312, + "op": "SWAP1", + "gas": 160600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x1", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 313, + "op": "PUSH2", + "gas": 160597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 316, + "op": "SWAP1", + "gas": 160594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x1", + "0x169" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 317, + "op": "PUSH1", + "gas": 160591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 319, + "op": "MUL", + "gas": 160588, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0x1", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 320, + "op": "PUSH32", + "gas": 160583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 353, + "op": "ADD", + "gas": 160580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 354, + "op": "DUP3", + "gas": 160577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 355, + "op": "PUSH1", + "gas": 160574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 357, + "op": "PUSH2", + "gas": 160571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 360, + "op": "JUMP", + "gas": 160568, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6", + "0x171" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 369, + "op": "JUMPDEST", + "gas": 160560, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 370, + "op": "PUSH1", + "gas": 160559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 372, + "op": "DUP4", + "gas": 160556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6", + "0x2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 373, + "op": "ADD", + "gas": 160553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6", + "0x2", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 374, + "op": "SWAP2", + "gas": 160550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 375, + "op": "DUP4", + "gas": 160547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 376, + "op": "SWAP1", + "gas": 160544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 377, + "op": "DUP3", + "gas": 160541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 378, + "op": "ISZERO", + "gas": 160538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 379, + "op": "PUSH2", + "gas": 160535, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 382, + "op": "JUMPI", + "gas": 160532, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140", + "0x0", + "0x206" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 383, + "op": "SWAP2", + "gas": 160522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x6", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 384, + "op": "PUSH1", + "gas": 160519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 386, + "op": "MUL", + "gas": 160516, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x6", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 387, + "op": "DUP3", + "gas": 160511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 388, + "op": "ADD", + "gas": 160508, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 160505, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 160502, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 160501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 160498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 160495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x140", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 160492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 160489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 160486, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 160476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 160473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 160470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 160467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 160464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 160461, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 160451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 160448, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 158348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 158345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 158342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 158339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 158336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 158333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 158330, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 158325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 158322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 158319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 158316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 158313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 158310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 158307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 158304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 158301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 158298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 158295, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 158290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 158287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 158284, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 158184, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 158182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 158179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 158176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x140", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 158173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 158170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 158167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x0", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 158164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 158161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 158158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x20", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 158155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x20", + "0x8", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 158152, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x20", + "0xf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 158147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 158144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 158141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 158138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 158135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 158132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 158129, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 158124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 158121, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 158113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 158112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 158109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 158106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x160", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 158103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 158100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 158097, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 158087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 158084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 158081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 158078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 158075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 158072, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x8", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 158012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 158009, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 157909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 157906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 157903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 157900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 157897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 157894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 157891, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 157886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0xffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 157883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 157880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 157877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 157874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 157871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 157868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 157865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 157862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 157859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 157856, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 157851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 157848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 157845, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 157745, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 157743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x160", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 157740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x160" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 157737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x160", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 157734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 157731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 157728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x8", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 157725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 157722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 157719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x20", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 157716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x20", + "0x10", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 157713, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x20", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 157708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 157705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 157702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 157699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 157696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 157693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 157690, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 157685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 157682, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 157674, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 157673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 157670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 157667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x180", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 157664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 157661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 157658, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 157648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 157645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 157642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 157639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 157636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 157633, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x10", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 157573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 157570, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 157470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 157467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 157464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 157461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 157458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 157455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 157452, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0x100000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 157447, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0xffffffffffffffff00000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 157444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0", + "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 157441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x100000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 157438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 157435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 157432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 157429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 157426, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 157423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 157420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 157417, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0x100000000000000000000000000000000", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 157412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0", + "0xde0b6b3a764000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 157409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 157406, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 137406, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0xde0b6b3a7640000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 137404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x180", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 137401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 137398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x180", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 137395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 137392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 137389, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x10", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 137386, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 137383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 137380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x20", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 137377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x20", + "0x18", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 137374, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x20", + "0x1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 137369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 137366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 137363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 137360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 137357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 137354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 137351, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 137346, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 137343, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 137335, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 137334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 137331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 137328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x1a0", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 137325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 137322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 137319, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 137309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 137306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 137303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 137300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 137297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 137294, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x18", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 137234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 137231, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 137131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 137128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 137125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 137122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 137119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 137116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 137113, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 137108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0xffffffffffffffff000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 137105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 137102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1000000000000000000000000000000000000000000000000", + "0xde0b6b3a764000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 137099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 137096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 137093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 137090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 137087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 137084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 137081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 137078, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x1000000000000000000000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 137073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 137070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xde0b6b3a764000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 137067, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0", + "0xde0b6b3a764000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 136967, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 136965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1a0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 136962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 136959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x1a0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 136956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 136953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 136950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x18", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 136947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 136944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 136941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 136938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20", + "0x20", + "0x20", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 136935, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20", + "0x20", + "0x27" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 136930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x200", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 136927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 136924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 136921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 136918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 136915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 136912, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 136907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 136904, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 136896, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 136895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 136892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 136889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x1c0", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 136886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 136883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 136880, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 136870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 136867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 136864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 136861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 136858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 136855, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 136845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 136842, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 134742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 134739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 134736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 134733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 134730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 134727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 134724, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 134719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 134716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 134713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 134710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 134707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 134704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 134701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 134698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 134695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 134692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 134689, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 134684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 134681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 134678, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 134578, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 134576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1c0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 134573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x1c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 134570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x1c0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 134567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 134564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 134561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x0", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 134558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 134555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 134552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x20", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 134549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x20", + "0x8", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 134546, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x20", + "0xf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 134541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 134538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 134535, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 134532, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0x0", + "0x200", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 134529, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 134526, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 134523, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 134518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 134515, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 134507, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 134506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 134503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 134500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x1e0", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 134497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 134494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 134491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 400, + "op": "DUP4", + "gas": 134481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 401, + "op": "MLOAD", + "gas": 134478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 402, + "op": "DUP4", + "gas": 134475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 403, + "op": "DUP3", + "gas": 134472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 404, + "op": "PUSH2", + "gas": 134469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 407, + "op": "EXP", + "gas": 134466, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x8", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 408, + "op": "DUP2", + "gas": 134406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 409, + "op": "SLOAD", + "gas": 134403, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 410, + "op": "DUP2", + "gas": 134303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 411, + "op": "PUSH1", + "gas": 134300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 413, + "op": "PUSH1", + "gas": 134297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 415, + "op": "PUSH1", + "gas": 134294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 417, + "op": "SHL", + "gas": 134291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 418, + "op": "SUB", + "gas": 134288, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 419, + "op": "MUL", + "gas": 134285, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0x10000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 420, + "op": "NOT", + "gas": 134280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0xffffffffffffffff0000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 421, + "op": "AND", + "gas": 134277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 422, + "op": "SWAP1", + "gas": 134274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 423, + "op": "DUP4", + "gas": 134271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 424, + "op": "PUSH1", + "gas": 134268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 426, + "op": "PUSH1", + "gas": 134265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 134262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "SHL", + "gas": 134259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 431, + "op": "SUB", + "gas": 134256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 432, + "op": "AND", + "gas": 134253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 433, + "op": "MUL", + "gas": 134250, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x10000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 434, + "op": "OR", + "gas": 134245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 435, + "op": "SWAP1", + "gas": 134242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 436, + "op": "SSTORE", + "gas": 134239, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 437, + "op": "POP", + "gas": 134139, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 438, + "op": "SWAP3", + "gas": 134137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1e0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 439, + "op": "PUSH1", + "gas": 134134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x1e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 441, + "op": "ADD", + "gas": 134131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x1e0", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 442, + "op": "SWAP3", + "gas": 134128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x8", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 443, + "op": "PUSH1", + "gas": 134125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 445, + "op": "ADD", + "gas": 134122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x8", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 446, + "op": "PUSH1", + "gas": 134119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 448, + "op": "DUP2", + "gas": 134116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 134113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x20", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 451, + "op": "ADD", + "gas": 134110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x20", + "0x10", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 452, + "op": "DIV", + "gas": 134107, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x20", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 453, + "op": "SWAP3", + "gas": 134102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 454, + "op": "DUP4", + "gas": 134099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 455, + "op": "ADD", + "gas": 134096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 456, + "op": "SWAP3", + "gas": 134093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, + "op": "PUSH1", + "gas": 134090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 459, + "op": "SUB", + "gas": 134087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 460, + "op": "MUL", + "gas": 134084, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 134079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 134076, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 134068, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 392, + "op": "DUP4", + "gas": 134067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 393, + "op": "DUP3", + "gas": 134064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 394, + "op": "GT", + "gas": 134061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x200", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 395, + "op": "ISZERO", + "gas": 134058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 396, + "op": "PUSH2", + "gas": 134055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 399, + "op": "JUMPI", + "gas": 134052, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x1", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 134042, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 134041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 134038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 134035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 134032, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 472, + "op": "DUP3", + "gas": 134022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 473, + "op": "DUP2", + "gas": 134019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 134016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 477, + "op": "EXP", + "gas": 134013, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x10", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 478, + "op": "DUP2", + "gas": 133953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 479, + "op": "SLOAD", + "gas": 133950, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x100000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 480, + "op": "SWAP1", + "gas": 133850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x100000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 481, + "op": "PUSH1", + "gas": 133847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 483, + "op": "PUSH1", + "gas": 133844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 485, + "op": "PUSH1", + "gas": 133841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 487, + "op": "SHL", + "gas": 133838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 488, + "op": "SUB", + "gas": 133835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 489, + "op": "MUL", + "gas": 133832, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x100000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 490, + "op": "NOT", + "gas": 133827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0xffffffffffffffff00000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 491, + "op": "AND", + "gas": 133824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 492, + "op": "SWAP1", + "gas": 133821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 493, + "op": "SSTORE", + "gas": 133818, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 494, + "op": "PUSH1", + "gas": 133718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 496, + "op": "ADD", + "gas": 133715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x10", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 497, + "op": "PUSH1", + "gas": 133712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 499, + "op": "DUP2", + "gas": 133709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 500, + "op": "PUSH1", + "gas": 133706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x20", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 502, + "op": "ADD", + "gas": 133703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x20", + "0x18", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 503, + "op": "DIV", + "gas": 133700, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x20", + "0x1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 504, + "op": "SWAP3", + "gas": 133695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 505, + "op": "DUP4", + "gas": 133692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 506, + "op": "ADD", + "gas": 133689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 133686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 508, + "op": "PUSH1", + "gas": 133683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 510, + "op": "SUB", + "gas": 133680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 511, + "op": "MUL", + "gas": 133677, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 512, + "op": "PUSH2", + "gas": 133672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 515, + "op": "JUMP", + "gas": 133669, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 133661, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 133660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 133657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 133654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 133651, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 472, + "op": "DUP3", + "gas": 133641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 473, + "op": "DUP2", + "gas": 133638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 133635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 477, + "op": "EXP", + "gas": 133632, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x18", + "0x100" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 478, + "op": "DUP2", + "gas": 133572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 479, + "op": "SLOAD", + "gas": 133569, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1000000000000000000000000000000000000000000000000", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 480, + "op": "SWAP1", + "gas": 133469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1000000000000000000000000000000000000000000000000", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 481, + "op": "PUSH1", + "gas": 133466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 483, + "op": "PUSH1", + "gas": 133463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 485, + "op": "PUSH1", + "gas": 133460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 487, + "op": "SHL", + "gas": 133457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x1", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 488, + "op": "SUB", + "gas": 133454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000", + "0x1", + "0x10000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 489, + "op": "MUL", + "gas": 133451, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0x1000000000000000000000000000000000000000000000000", + "0xffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 490, + "op": "NOT", + "gas": 133446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0xffffffffffffffff000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 491, + "op": "AND", + "gas": 133443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 492, + "op": "SWAP1", + "gas": 133440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 493, + "op": "SSTORE", + "gas": 133437, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", + "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", + "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", + "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", + "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" + } + }, + { + "pc": 494, + "op": "PUSH1", + "gas": 133337, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 496, + "op": "ADD", + "gas": 133334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x18", + "0x8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 497, + "op": "PUSH1", + "gas": 133331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 499, + "op": "DUP2", + "gas": 133328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 500, + "op": "PUSH1", + "gas": 133325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 502, + "op": "ADD", + "gas": 133322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x20", + "0x20", + "0x7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 503, + "op": "DIV", + "gas": 133319, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x20", + "0x27" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 504, + "op": "SWAP3", + "gas": 133314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x200", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 505, + "op": "DUP4", + "gas": 133311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 506, + "op": "ADD", + "gas": 133308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 133305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x1", + "0x200", + "0x20", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 508, + "op": "PUSH1", + "gas": 133302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x20", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 510, + "op": "SUB", + "gas": 133299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x20", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 511, + "op": "MUL", + "gas": 133296, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 512, + "op": "PUSH2", + "gas": 133291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 515, + "op": "JUMP", + "gas": 133288, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x1d1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 133280, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 466, + "op": "DUP1", + "gas": 133279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 467, + "op": "ISZERO", + "gas": 133276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 468, + "op": "PUSH2", + "gas": 133273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 471, + "op": "JUMPI", + "gas": 133270, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0", + "0x1", + "0x204" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 516, + "op": "JUMPDEST", + "gas": 133260, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 517, + "op": "POP", + "gas": 133259, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 518, + "op": "JUMPDEST", + "gas": 133257, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 519, + "op": "POP", + "gas": 133256, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 520, + "op": "PUSH2", + "gas": 133254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 523, + "op": "SWAP3", + "gas": 133251, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 524, + "op": "SWAP2", + "gas": 133248, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0x200", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 525, + "op": "POP", + "gas": 133245, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x200" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 526, + "op": "PUSH2", + "gas": 133243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 529, + "op": "JUMP", + "gas": 133240, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x216" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 534, + "op": "JUMPDEST", + "gas": 133232, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 535, + "op": "JUMPDEST", + "gas": 133231, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 536, + "op": "DUP1", + "gas": 133230, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 537, + "op": "DUP3", + "gas": 133227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 538, + "op": "GT", + "gas": 133224, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 539, + "op": "ISZERO", + "gas": 133221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 540, + "op": "PUSH2", + "gas": 133218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 543, + "op": "JUMPI", + "gas": 133215, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x1", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 530, + "op": "JUMPDEST", + "gas": 133205, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 133204, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 532, + "op": "SWAP1", + "gas": 133202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x212", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 533, + "op": "JUMP", + "gas": 133199, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", + "0x212" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 530, + "op": "JUMPDEST", + "gas": 133191, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 133190, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 532, + "op": "SWAP1", + "gas": 133188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0x169", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 533, + "op": "JUMP", + "gas": 133185, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "0x169" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 361, + "op": "JUMPDEST", + "gas": 133177, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 362, + "op": "POP", + "gas": 133176, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 363, + "op": "POP", + "gas": 133174, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 364, + "op": "POP", + "gas": 133172, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 365, + "op": "PUSH2", + "gas": 133170, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 368, + "op": "JUMP", + "gas": 133167, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x22b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 555, + "op": "JUMPDEST", + "gas": 133159, + "gasCost": 1, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 556, + "op": "PUSH1", + "gas": 133158, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 558, + "op": "DUP1", + "gas": 133155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 559, + "op": "PUSH2", + "gas": 133152, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5", + "0xc5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 562, + "op": "PUSH1", + "gas": 133149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5", + "0xc5", + "0x239" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 564, + "op": "CODECOPY", + "gas": 133146, + "gasCost": 24, + "depth": 1, + "stack": [ + "0xc5", + "0xc5", + "0x239", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000200", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 565, + "op": "PUSH1", + "gas": 133122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5" + ], + "memory": [ + "6080604052348015600f57600080fd5b506004361060325760003560e01c8063", + "12ae639714603757806332e43a111460b6575b600080fd5b60b660107fada501", + "3122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001", + "602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc", + "3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca3", + "9002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343", + "000815000a000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 567, "op": "RETURN", - "pc": 103, + "gas": 133119, + "gasCost": 0, + "depth": 1, "stack": [ - "0x16", + "0xc5", "0x0" + ], + "memory": [ + "6080604052348015600f57600080fd5b506004361060325760003560e01c8063", + "12ae639714603757806332e43a111460b6575b600080fd5b60b660107fada501", + "3122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001", + "602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc", + "3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca3", + "9002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343", + "000815000a000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000005", + "0000000000000000000000000000000000000000000000000000000000000006", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" ] } ] }, - "address": "0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6", - "tx_id": "0x02f15d18ccbca66af5d8fd90e5f4c3b0a2c5217e34f3b3e74b49dfb197014202" + "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", + "tx_id": "0xe8217383e8dd9c1f21f4a299f478b476e7dbf7ae1ac6bff0d532fc22cd331223" } \ No newline at end of file diff --git a/tests/expected_dvfs/StaticInMapping.dvf.json b/tests/expected_dvfs/StaticInMapping.dvf.json index 26e81bd5..30a175a0 100644 --- a/tests/expected_dvfs/StaticInMapping.dvf.json +++ b/tests/expected_dvfs/StaticInMapping.dvf.json @@ -1,17 +1,35 @@ { "version": "0.9.1", - "id": "0x45f2ab5fb4dd26589122948436b0c8963ea0f2ebc56efe05b2b4931f9acf3754", + "id": "0x8b3a457a9eb1ec95f7ae620bbced276ee75fd2f4dd8d1d56b9c44d1c99a7b123", "contract_name": "StaticInMapping", "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", "chain_id": 1337, "deployment_block_num": 2, "init_block_num": 4, - "deployment_tx": "0xee0f30f454c60689932be3068a44e92e9e59f8ff5e92351a57153cd259458185", - "codehash": "0x9f192fd66f7d7f061d58e1f2bd1f7572bf01d5d4f976585e8cff140a190c9575", + "deployment_tx": "0xe8217383e8dd9c1f21f4a299f478b476e7dbf7ae1ac6bff0d532fc22cd331223", + "codehash": "0xb5c06b6292fbde9b5ec3ce36cade0e4e1b8c459ce31ddc78ac3cffe771845e88", "insecure": false, "immutables": [], "constructor_args": [], "critical_storage_variables": [ + { + "slot": "0x2", + "offset": 0, + "var_name": "someInt", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000064", + "value_hint": "100", + "comparison_operator": "Equal" + }, + { + "slot": "0x3", + "offset": 0, + "var_name": "dynamicStatic.length", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000002", + "value_hint": "2", + "comparison_operator": "Equal" + }, { "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", "offset": 0, @@ -39,6 +57,69 @@ "value_hint": "16", "comparison_operator": "Equal" }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 0, + "var_name": "dynamicStatic[0][0]", + "var_type": "t_uint64", + "value": "0x0000000000000001", + "value_hint": "1", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 8, + "var_name": "dynamicStatic[0][1]", + "var_type": "t_uint64", + "value": "0x0000000000000002", + "value_hint": "2", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 16, + "var_name": "dynamicStatic[0][2]", + "var_type": "t_uint64", + "value": "0x0000000000000003", + "value_hint": "3", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "offset": 24, + "var_name": "dynamicStatic[0][3]", + "var_type": "t_uint64", + "value": "0x0000000000000004", + "value_hint": "4", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "offset": 0, + "var_name": "dynamicStatic[0][4]", + "var_type": "t_uint64", + "value": "0x0000000000000005", + "value_hint": "5", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "offset": 8, + "var_name": "dynamicStatic[0][5]", + "var_type": "t_uint64", + "value": "0x0000000000000006", + "value_hint": "6", + "comparison_operator": "Equal" + }, + { + "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "offset": 16, + "var_name": "dynamicStatic[1][2]", + "var_type": "t_uint64", + "value": "0x0de0b6b3a7640000", + "value_hint": "1. * 10^18", + "comparison_operator": "Equal" + }, { "slot": "0xc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428", "offset": 0, @@ -48,6 +129,15 @@ "value_hint": "83", "comparison_operator": "Equal" }, + { + "slot": "0xdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3", + "offset": 0, + "var_name": "static_in_mapping[0x0000000000000000000000000000000000000017]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000064", + "value_hint": "100", + "comparison_operator": "Equal" + }, { "slot": "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", "offset": 0, diff --git a/tests/test_decoding.rs b/tests/test_decoding.rs index aac88751..5c69a49b 100644 --- a/tests/test_decoding.rs +++ b/tests/test_decoding.rs @@ -93,7 +93,6 @@ mod tests { assert_eq!(generated_result.len(), expected_result.len()); for i in 0..generated_result.len() { - // println!("{:?}", generated_result[i]); assert_eq!(generated_result[i], expected_result[i]); } } diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index 7b114dd2..16bde97b 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -550,11 +550,11 @@ mod tests { println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); // Uncomment to regenerate expected files - std::fs::copy( - factory_outfile.path(), - Path::new("tests/expected_dvfs/PullPaymentGIO.dvf.json"), - ) - .unwrap(); + // std::fs::copy( + // factory_outfile.path(), + // Path::new("tests/expected_dvfs/PullPayment.dvf.json"), + // ) + // .unwrap(); // Remove the extra byte again truncate_last_byte(src_name); From 1571ddd0501f9e67ce82b7bfad1107e78a432d96 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 25 Jul 2025 15:47:22 +0200 Subject: [PATCH 08/10] Fix panic on missing IR --- lib/state/contract_state.rs | 12 +++++++++--- lib/state/forge_inspect.rs | 31 +++++++++++++++++-------------- 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index b71864b1..92f976eb 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -112,8 +112,8 @@ impl<'a> ContractState<'a> { } /// Given the contract IR optimized output, extracts the mapping assigments with static keys - fn add_static_key_mapping_entries(&mut self, fi_ir_optimized: &ForgeInspectIrOptimized) { - let lines: Vec<&str> = fi_ir_optimized.ir.lines().collect(); + fn add_static_key_mapping_entries(&mut self, ir_string: &String) { + let lines: Vec<&str> = ir_string.lines().collect(); let mut last_key: Option = None; let mut last_slot: Option = None; @@ -251,7 +251,13 @@ impl<'a> ContractState<'a> { self.add_state_variable(state_variable); } - self.add_static_key_mapping_entries(&fi_ir_optimized); + // add static-key mapping entries to the tracked mapping variables (if the contract IR is available) + match &fi_ir_optimized.ir { + Ok(ir_string) => self.add_static_key_mapping_entries(&ir_string), + Err(error) => { + info!("Warning: could not obtain IR for contract\n{error:?}"); + } + } } fn memory_as_string(memory: &Vec) -> String { diff --git a/lib/state/forge_inspect.rs b/lib/state/forge_inspect.rs index 2732c4ad..310ff16d 100644 --- a/lib/state/forge_inspect.rs +++ b/lib/state/forge_inspect.rs @@ -1,5 +1,6 @@ use std::collections::HashMap; use std::fmt; +use std::io::Error; use std::path::Path; use std::process::Command; use std::str::FromStr; @@ -154,12 +155,14 @@ impl ForgeInspectLayoutStorage { contract_name: &str, contract_path: Option, ) -> Self { + // @note a failed forge inspect causes a panic here. let layout = forge_inspect_helper( project_path, contract_name, contract_path, String::from("storageLayout"), - ); + ) + .unwrap(); serde_json::from_str::(&layout).unwrap() } @@ -168,9 +171,8 @@ impl ForgeInspectLayoutStorage { } } -#[derive(Deserialize, Debug, Default)] pub struct ForgeInspectIrOptimized { - pub ir: String, + pub ir: Result, } impl ForgeInspectIrOptimized { @@ -179,6 +181,7 @@ impl ForgeInspectIrOptimized { contract_name: &str, contract_path: Option, ) -> Self { + // @note a failed forge inspect does NOT panic because IR is not available for all contracts let ir_output = forge_inspect_helper( project_path, contract_name, @@ -195,7 +198,7 @@ fn forge_inspect_helper( contract_name: &str, contract_path: Option, field: String, -) -> String { +) -> Result { // Create a temporary directory let temp_dir = TempDir::new().unwrap(); // Get the path of the temporary directory @@ -229,18 +232,18 @@ fn forge_inspect_helper( .arg(temp_cache_path.as_os_str()) .arg(contract) .arg(field) - .output() - .expect("Could not create storage layout"); + .output()?; - assert!( - forge_inspect.status.success(), - "Failed to run forge inspect:\n{}", - String::from_utf8_lossy(&forge_inspect.stderr) - ); + if !forge_inspect.status.success() { + return Err(Error::other(format!( + "Failed to run forge inspect: {}", + String::from_utf8_lossy(&forge_inspect.stderr) + ))); + } - let layout = String::from_utf8(forge_inspect.stdout).unwrap(); - debug!("{}", layout); + let output = String::from_utf8(forge_inspect.stdout).unwrap(); + debug!("{}", output); debug!("Parsed forge inspect output."); - return layout; + return Ok(output); } From ddf6ba0acf72cac504a127d7cf8e0065b5a268ce Mon Sep 17 00:00:00 2001 From: Stefan Effenberger Date: Wed, 13 Aug 2025 13:44:10 +0200 Subject: [PATCH 09/10] updated readme and added additional tests --- README.md | 2 +- lib/bytecode_verification/parse_json.rs | 4 +- lib/state/contract_state.rs | 16 ++- lib/state/forge_inspect.rs | 2 +- src/dvf.rs | 4 +- tests/Contracts/src/StaticInMapping.sol | 6 ++ tests/expected_dvfs/StaticInMapping.dvf.json | 104 ++++++++++++------- tests/test_end_to_end.rs | 50 --------- 8 files changed, 84 insertions(+), 104 deletions(-) diff --git a/README.md b/README.md index 28612ecd..f5e929ee 100644 --- a/README.md +++ b/README.md @@ -592,7 +592,7 @@ This section will be updated soon. - Contracts performing `delegatecall` to more than one other contract are currently not supported. - `dv update` currently only updates values of existing storage variables in the DVF and does not add newly added storage values. - Multiple contracts with the same name compiled with different compiler versions in one project are not supported. -- Static mapping keys (e.g., `mapping[0]`) can currently not be decoded. +- Multi-dimensional mappings with static keys (e.g., `mapping[1][2]`) can currently not be decoded. - Empty-string mapping keys can currently not be decoded correctly. - Big transaction traces (`debug_traceTransaction` with opcode logger) of multiple GB may cause a crash. - Proxy Contracts without events when changing the implementation cannot be accurately secured, as implementation changes could be missed. diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index 7cf68506..689c6396 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -99,8 +99,8 @@ impl ProjectInfo { let program = command.get_program(); let args: Vec<_> = command.get_args().collect(); - println!("Command: {:?}", program); - println!("Args: {:?}", args); + info!("Command: {:?}", program); + info!("Args: {:?}", args); let build = command.output().expect("Could not build project"); diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index 92f976eb..16d57f27 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -112,7 +112,7 @@ impl<'a> ContractState<'a> { } /// Given the contract IR optimized output, extracts the mapping assigments with static keys - fn add_static_key_mapping_entries(&mut self, ir_string: &String) { + fn add_static_key_mapping_entries(&mut self, ir_string: &str) { let lines: Vec<&str> = ir_string.lines().collect(); let mut last_key: Option = None; let mut last_slot: Option = None; @@ -217,7 +217,7 @@ impl<'a> ContractState<'a> { self.mapping_usages .entry(mapping_slot) - .or_insert_with(HashSet::new) + .or_default() .insert((resolved_last_key, entry_slot)); } _ => { @@ -253,7 +253,7 @@ impl<'a> ContractState<'a> { // add static-key mapping entries to the tracked mapping variables (if the contract IR is available) match &fi_ir_optimized.ir { - Ok(ir_string) => self.add_static_key_mapping_entries(&ir_string), + Ok(ir_string) => self.add_static_key_mapping_entries(ir_string), Err(error) => { info!("Warning: could not obtain IR for contract\n{error:?}"); } @@ -339,8 +339,8 @@ impl<'a> ContractState<'a> { if let Some(key_in) = key { let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { - println!( - "Mapping usages does not contain index {:?}, entry slot {:?}", + debug!( + "Mapping usages do not contain index {:?}, entry slot {:?}", index, target_slot ); let mut usage_set = HashSet::new(); @@ -374,7 +374,7 @@ impl<'a> ContractState<'a> { assert!(sha3_input.len() == usize_str_length); key = Some(sha3_input[2..usize_str_length - 64].to_string()); index = U256::from_str_radix(&sha3_input[usize_str_length - 64..], 16)?; - println!("Found key {} for index {}.", key.clone().unwrap(), index); + debug!("Found key {} for index {}.", key.clone().unwrap(), index); } } } @@ -414,9 +414,8 @@ impl<'a> ContractState<'a> { let mut critical_storage_variables = Vec::::new(); - // forge inspect state vddariables + // forge inspect state variables for state_variable in self.state_variables.clone() { - println!("stor var {:?}", state_variable); critical_storage_variables.extend(self.get_critical_variable( &state_variable, snapshot, @@ -662,7 +661,6 @@ impl<'a> ContractState<'a> { .collect(); sorted_keys.sort(); for (sorted_key, target_slot) in &sorted_keys { - println!("sorted_key {}, target_slot {}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); // Skip if key is longer than actual key type of the mapping diff --git a/lib/state/forge_inspect.rs b/lib/state/forge_inspect.rs index 310ff16d..5945b5a1 100644 --- a/lib/state/forge_inspect.rs +++ b/lib/state/forge_inspect.rs @@ -245,5 +245,5 @@ fn forge_inspect_helper( debug!("{}", output); debug!("Parsed forge inspect output."); - return Ok(output); + Ok(output) } diff --git a/src/dvf.rs b/src/dvf.rs index fe7de24f..9d4c0cc0 100644 --- a/src/dvf.rs +++ b/src/dvf.rs @@ -164,7 +164,7 @@ fn validate_dvf( return Err(ValidationError::from("Different codehash.")); } - let pretty_printer = PrettyPrinter::new(&config, Some(®istry)); + let pretty_printer = PrettyPrinter::new(config, Some(registry)); // Validate Storage slots print_progress("Validating Storage Variables.", &mut pc, &progress_mode); @@ -181,7 +181,7 @@ fn validate_dvf( if !storage_variable.compare(¤t_val[start_index..end_index]) { let message = get_mismatch_msg( &pretty_printer, - &storage_variable, + storage_variable, ¤t_val[start_index..end_index], ); if continue_on_mismatch { diff --git a/tests/Contracts/src/StaticInMapping.sol b/tests/Contracts/src/StaticInMapping.sol index b4e554a0..6126bab7 100644 --- a/tests/Contracts/src/StaticInMapping.sol +++ b/tests/Contracts/src/StaticInMapping.sol @@ -5,8 +5,11 @@ pragma solidity ^0.8.13; contract StaticInMapping { mapping(address => uint256) static_in_mapping; mapping(uint256 => uint256) static_in_mapping2; + mapping(string => uint256) static_in_mapping3; + mapping(uint256 => mapping(uint256 => uint256)) static_in_mapping4; uint256 someInt; uint64[6][] dynamicStatic; + uint256 constant KEY = 345; constructor() { // static_in_mapping[address(this)] = 2 ** 128 - 1; @@ -33,6 +36,9 @@ contract StaticInMapping { static_in_mapping[address(1)] = 16; static_in_mapping2[1 + 15] = 42; static_in_mapping2[1 + 16] = 81 + 2; + static_in_mapping2[KEY] = 100; + static_in_mapping3["hello"] = 200; + static_in_mapping4[1][2] = 300; // TODO: This currently does not work someInt = 100; } diff --git a/tests/expected_dvfs/StaticInMapping.dvf.json b/tests/expected_dvfs/StaticInMapping.dvf.json index 30a175a0..3cc3dd51 100644 --- a/tests/expected_dvfs/StaticInMapping.dvf.json +++ b/tests/expected_dvfs/StaticInMapping.dvf.json @@ -1,19 +1,19 @@ { "version": "0.9.1", - "id": "0x8b3a457a9eb1ec95f7ae620bbced276ee75fd2f4dd8d1d56b9c44d1c99a7b123", + "id": "0xbfbbbb479799328113ebb122586c3673ce83d41670e34cefe280732b5c7fa055", "contract_name": "StaticInMapping", "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", "chain_id": 1337, "deployment_block_num": 2, "init_block_num": 4, - "deployment_tx": "0xe8217383e8dd9c1f21f4a299f478b476e7dbf7ae1ac6bff0d532fc22cd331223", - "codehash": "0xb5c06b6292fbde9b5ec3ce36cade0e4e1b8c459ce31ddc78ac3cffe771845e88", + "deployment_tx": "0xa822c1f50d8e86d61269447a778635401df11511f370bfd94752b333a1058d1f", + "codehash": "0x28c544f3901eb1335c6b9e1fcccb643a002f63362ae759a02e71970ff65b14ed", "insecure": false, "immutables": [], "constructor_args": [], "critical_storage_variables": [ { - "slot": "0x2", + "slot": "0x4", "offset": 0, "var_name": "someInt", "var_type": "t_uint256", @@ -22,7 +22,7 @@ "comparison_operator": "Equal" }, { - "slot": "0x3", + "slot": "0x5", "offset": 0, "var_name": "dynamicStatic.length", "var_type": "t_uint256", @@ -31,34 +31,7 @@ "comparison_operator": "Equal" }, { - "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "offset": 0, - "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0x755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb640983", - "offset": 0, - "var_name": "static_in_mapping2[16]", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", - "offset": 0, - "var_name": "static_in_mapping[0x0000000000000000000000000000000000000001]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000010", - "value_hint": "16", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0", "offset": 0, "var_name": "dynamicStatic[0][0]", "var_type": "t_uint64", @@ -67,7 +40,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0", "offset": 8, "var_name": "dynamicStatic[0][1]", "var_type": "t_uint64", @@ -76,7 +49,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0", "offset": 16, "var_name": "dynamicStatic[0][2]", "var_type": "t_uint64", @@ -85,7 +58,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0", "offset": 24, "var_name": "dynamicStatic[0][3]", "var_type": "t_uint64", @@ -94,7 +67,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db1", "offset": 0, "var_name": "dynamicStatic[0][4]", "var_type": "t_uint64", @@ -103,7 +76,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db1", "offset": 8, "var_name": "dynamicStatic[0][5]", "var_type": "t_uint64", @@ -112,7 +85,7 @@ "comparison_operator": "Equal" }, { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", + "slot": "0x36b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2", "offset": 16, "var_name": "dynamicStatic[1][2]", "var_type": "t_uint64", @@ -120,6 +93,59 @@ "value_hint": "1. * 10^18", "comparison_operator": "Equal" }, + { + "slot": "0x63383099118369e3b7e10810450c200ba30ca74f16a798c21d846e7b8f29f8e5", + "offset": 0, + "var_name": "unknown", + "var_type": null, + "value": "0x000000000000000000000000000000000000000000000000000000000000012c", + "comparison_operator": "Equal" + }, + { + "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", + "offset": 0, + "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value_hint": "5", + "comparison_operator": "Equal" + }, + { + "slot": "0x72dc9454b9c492e84f376d1cfc7e7f58c0013462260e278d5269e649ebbb1606", + "offset": 0, + "var_name": "static_in_mapping2[345]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000064", + "value_hint": "100", + "comparison_operator": "Equal" + }, + { + "slot": "0x755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb640983", + "offset": 0, + "var_name": "static_in_mapping2[16]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, + { + "slot": "0x98cc3604479d1233834ea19a78b22cff641ec62dc88921ba3f1f66a37957a4f8", + "offset": 0, + "var_name": "static_in_mapping3[hello]", + "var_type": "t_uint256", + "value": "0x00000000000000000000000000000000000000000000000000000000000000c8", + "value_hint": "200", + "comparison_operator": "Equal" + }, + { + "slot": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "offset": 0, + "var_name": "static_in_mapping[0x0000000000000000000000000000000000000001]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000010", + "value_hint": "16", + "comparison_operator": "Equal" + }, { "slot": "0xc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428", "offset": 0, diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index 16bde97b..12b0263d 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -788,62 +788,12 @@ mod tests { let mut testcases: Vec = vec![]; - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_Lib.s.sol"), - contract: String::from("Lib"), - expected: String::from("tests/expected_dvfs/Lib.dvf.json"), - }); - testcases.push(TestCaseE2E { script: String::from("script/Deploy_StaticInMapping.s.sol"), contract: String::from("StaticInMapping"), expected: String::from("tests/expected_dvfs/StaticInMapping.dvf.json"), }); - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_0.s.sol"), - contract: String::from("BytesMapping"), - expected: String::from("tests/expected_dvfs/Deploy_0.dvf.json"), - }); - - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_1.s.sol"), - contract: String::from("StringMapping"), - expected: String::from("tests/expected_dvfs/Deploy_1.dvf.json"), - }); - - // testcases.push(TestCaseE2E { - // script: String::from("script/Deploy_2.s.sol"), - // contract: String::from("CrazyStruct"), - // expected: String::from("tests/expected_dvfs/Deploy_2.dvf.json"), - // }); - - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_3.s.sol"), - contract: String::from("StructInEvent"), - expected: String::from("tests/expected_dvfs/Deploy_3.dvf.json"), - }); - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_4.s.sol"), - contract: String::from("StaticArrayOfDynamicArray"), - expected: String::from("tests/expected_dvfs/Deploy_4.dvf.json"), - }); - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_5.s.sol"), - contract: String::from("NestedMapping"), - expected: String::from("tests/expected_dvfs/Deploy_5.dvf.json"), - }); - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_AllValueTypes.s.sol"), - contract: String::from("AllValueTypes"), - expected: String::from("tests/expected_dvfs/AllValueTypes.dvf.json"), - }); - testcases.push(TestCaseE2E { - script: String::from("script/Deploy_CrazyHiddenStruct.s.sol"), - contract: String::from("CrazyHiddenStruct"), - expected: String::from("tests/expected_dvfs/CrazyHiddenStruct.dvf.json"), - }); - for testcase in testcases { let url = format!("http://localhost:{}", port).to_string(); for client_type in LocalClientType::iterator() { From acfc4fcaf97dfcbb27d5fe9dc91cad9cd604afb6 Mon Sep 17 00:00:00 2001 From: Stefan Effenberger Date: Wed, 13 Aug 2025 16:34:15 +0200 Subject: [PATCH 10/10] reenabled tests and removed obsolete decoding tests --- tests/data/result_BytesMapping.json | 29 - tests/data/result_CrazyStruct.json | 128 - .../result_DynamicArrayOfStaticArray.json | 119 - tests/data/result_Enum.json | 34 - tests/data/result_NestedMapping.json | 29 - tests/data/result_StaticArray.json | 88 - .../result_StaticArrayOfDynamicArray.json | 124 - .../data/result_StaticArrayOfStaticArray.json | 164 - tests/data/result_StaticArrayOfStruct.json | 141 - tests/data/result_StaticInMapping.json | 191 - tests/data/result_StringMapping.json | 65 - tests/data/result_StructInMapping.json | 82 - tests/data/result_StructInStruct.json | 46 - tests/data/trace_BytesMapping.json | 11047 ----- tests/data/trace_CrazyStruct.json | 2421 - .../data/trace_DynamicArrayOfStaticArray.json | 37498 --------------- tests/data/trace_Enum.json | 674 - tests/data/trace_NestedMapping.json | 3087 -- tests/data/trace_StaticArray.json | 1326 - .../data/trace_StaticArrayOfDynamicArray.json | 22198 --------- .../data/trace_StaticArrayOfStaticArray.json | 775 - tests/data/trace_StaticArrayOfStruct.json | 809 - tests/data/trace_StaticInMapping.json | 38071 ---------------- tests/data/trace_StringMapping.json | 14775 ------ tests/data/trace_StructInMapping.json | 5249 --- tests/data/trace_StructInStruct.json | 812 - tests/test_decoding.rs | 450 - tests/test_end_to_end.rs | 50 + 28 files changed, 50 insertions(+), 140432 deletions(-) delete mode 100644 tests/data/result_BytesMapping.json delete mode 100644 tests/data/result_CrazyStruct.json delete mode 100644 tests/data/result_DynamicArrayOfStaticArray.json delete mode 100644 tests/data/result_Enum.json delete mode 100644 tests/data/result_NestedMapping.json delete mode 100644 tests/data/result_StaticArray.json delete mode 100644 tests/data/result_StaticArrayOfDynamicArray.json delete mode 100644 tests/data/result_StaticArrayOfStaticArray.json delete mode 100644 tests/data/result_StaticArrayOfStruct.json delete mode 100644 tests/data/result_StaticInMapping.json delete mode 100644 tests/data/result_StringMapping.json delete mode 100644 tests/data/result_StructInMapping.json delete mode 100644 tests/data/result_StructInStruct.json delete mode 100644 tests/data/trace_BytesMapping.json delete mode 100644 tests/data/trace_CrazyStruct.json delete mode 100644 tests/data/trace_DynamicArrayOfStaticArray.json delete mode 100644 tests/data/trace_Enum.json delete mode 100644 tests/data/trace_NestedMapping.json delete mode 100644 tests/data/trace_StaticArray.json delete mode 100644 tests/data/trace_StaticArrayOfDynamicArray.json delete mode 100644 tests/data/trace_StaticArrayOfStaticArray.json delete mode 100644 tests/data/trace_StaticArrayOfStruct.json delete mode 100644 tests/data/trace_StaticInMapping.json delete mode 100644 tests/data/trace_StringMapping.json delete mode 100644 tests/data/trace_StructInMapping.json delete mode 100644 tests/data/trace_StructInStruct.json delete mode 100644 tests/test_decoding.rs diff --git a/tests/data/result_BytesMapping.json b/tests/data/result_BytesMapping.json deleted file mode 100644 index c6cdad0f..00000000 --- a/tests/data/result_BytesMapping.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", - "offset": 0, - "var_name": "x[0x41207665727976657279766572797665727976657279766572797665727976657279766572797665727976657279766572797665727976657279766572797665727976657279206c6f6e6720737472696e67]", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", - "offset": 0, - "var_name": "x[0x48656c6c6f207468697320697320612074657374]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "b (length=23)", - "var_type": "t_bytes_storage", - "value": "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", - "value_hint": "4a75737420736f6d65206e6f726d616c2062797465732e", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_CrazyStruct.json b/tests/data/result_CrazyStruct.json deleted file mode 100644 index c231a536..00000000 --- a/tests/data/result_CrazyStruct.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "x", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000539", - "value_hint": "1337", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "S.A", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000041", - "value_hint": "65", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "S.B", - "var_type": "t_address", - "value": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "value_hint": "SHIBA INU (SHIB)", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 20, - "var_name": "S.C", - "var_type": "t_bool", - "value": "0x01", - "value_hint": "true", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "S.D[0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 8, - "var_name": "S.D[1]", - "var_type": "t_uint64", - "value": "0x000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 16, - "var_name": "S.D[2]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 24, - "var_name": "S.D[3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0x4", - "offset": 0, - "var_name": "S.D[4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0x4", - "offset": 8, - "var_name": "S.D[5]", - "var_type": "t_uint64", - "value": "0x000000000000007c", - "value_hint": "124", - "comparison_operator": "Equal" - }, - { - "slot": "0x5", - "offset": 0, - "var_name": "S.E", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000080", - "value_hint": "128", - "comparison_operator": "Equal" - }, - { - "slot": "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "offset": 0, - "var_name": "S.mp[0xe7f1725e7734ce288f8367e1bb143e90bb3f0512][42]", - "var_type": "t_bool", - "value": "0x00", - "value_hint": "false", - "comparison_operator": "Equal" - }, - { - "slot": "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "offset": 0, - "var_name": "S.mp[0xe7f1725e7734ce288f8367e1bb143e90bb3f0512][uint256 Max Value]", - "var_type": "t_bool", - "value": "0x01", - "value_hint": "true", - "comparison_operator": "Equal" - }, - { - "slot": "0x7", - "offset": 0, - "var_name": "S.F.length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_DynamicArrayOfStaticArray.json b/tests/data/result_DynamicArrayOfStaticArray.json deleted file mode 100644 index 8028a1d0..00000000 --- a/tests/data/result_DynamicArrayOfStaticArray.json +++ /dev/null @@ -1,119 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "dynamicStatic.length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "offset": 0, - "var_name": "dynamicStatic[0][0]", - "var_type": "t_uint64", - "value": "0x0000000000000001", - "value_hint": "1", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "offset": 8, - "var_name": "dynamicStatic[0][1]", - "var_type": "t_uint64", - "value": "0x0000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "offset": 16, - "var_name": "dynamicStatic[0][2]", - "var_type": "t_uint64", - "value": "0x0000000000000003", - "value_hint": "3", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "offset": 24, - "var_name": "dynamicStatic[0][3]", - "var_type": "t_uint64", - "value": "0x0000000000000004", - "value_hint": "4", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "offset": 0, - "var_name": "dynamicStatic[0][4]", - "var_type": "t_uint64", - "value": "0x0000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "offset": 8, - "var_name": "dynamicStatic[0][5]", - "var_type": "t_uint64", - "value": "0x0000000000000006", - "value_hint": "6", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "offset": 0, - "var_name": "dynamicStatic[1][0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "offset": 8, - "var_name": "dynamicStatic[1][1]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "offset": 16, - "var_name": "dynamicStatic[1][2]", - "var_type": "t_uint64", - "value": "0x0de0b6b3a7640000", - "value_hint": "1. * 10^18", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "offset": 24, - "var_name": "dynamicStatic[1][3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "offset": 0, - "var_name": "dynamicStatic[1][4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "offset": 8, - "var_name": "dynamicStatic[1][5]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - } -] \ No newline at end of file diff --git a/tests/data/result_Enum.json b/tests/data/result_Enum.json deleted file mode 100644 index c8bc3f1c..00000000 --- a/tests/data/result_Enum.json +++ /dev/null @@ -1,34 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "s", - "var_type": "t_uint8", - "value": "0x01", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "a[0]", - "var_type": "t_uint8", - "value": "0x00", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 1, - "var_name": "a[1]", - "var_type": "t_uint8", - "value": "0x00", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 2, - "var_name": "a[2]", - "var_type": "t_uint8", - "value": "0x02", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_NestedMapping.json b/tests/data/result_NestedMapping.json deleted file mode 100644 index e90ae1a9..00000000 --- a/tests/data/result_NestedMapping.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "slot": "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "offset": 0, - "var_name": "mp[0x0000000000000000000000000000000000000000][0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9]", - "var_type": "t_int128", - "value": "0xfffffffffffffffffffffffffffffffb", - "value_hint": "-5", - "comparison_operator": "Equal" - }, - { - "slot": "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "offset": 0, - "var_name": "mp[0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9][1inch v5: Aggregation Router]", - "var_type": "t_int128", - "value": "0x00000000000000000000000005f5e100", - "value_hint": "1. * 10^8", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "x", - "var_type": "t_int8", - "value": "0xfe", - "value_hint": "-2", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StaticArray.json b/tests/data/result_StaticArray.json deleted file mode 100644 index be44dc14..00000000 --- a/tests/data/result_StaticArray.json +++ /dev/null @@ -1,88 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "staticArray[0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x0", - "offset": 8, - "var_name": "staticArray[1]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x0", - "offset": 16, - "var_name": "staticArray[2]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x0", - "offset": 24, - "var_name": "staticArray[3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "staticArray[4]", - "var_type": "t_uint64", - "value": "0x0000000000000064", - "value_hint": "100", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 8, - "var_name": "staticArray[5]", - "var_type": "t_uint64", - "value": "0x0000000000000020", - "value_hint": "32", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "addressArray[0]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "addressArray[1]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000001", - "comparison_operator": "Equal" - }, - { - "slot": "0x4", - "offset": 0, - "var_name": "addressArray[2]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000002", - "comparison_operator": "Equal" - }, - { - "slot": "0x5", - "offset": 0, - "var_name": "addressArray[3]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000003", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StaticArrayOfDynamicArray.json b/tests/data/result_StaticArrayOfDynamicArray.json deleted file mode 100644 index 9ff2bc65..00000000 --- a/tests/data/result_StaticArrayOfDynamicArray.json +++ /dev/null @@ -1,124 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "staticDynamic[0].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000001", - "value_hint": "1", - "comparison_operator": "Equal" - }, - { - "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "offset": 0, - "var_name": "staticDynamic[0][0]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000100000", - "value_hint": "1.048576 * 10^6", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "staticDynamic[1].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "offset": 0, - "var_name": "staticDynamic[1][0]", - "var_type": "t_uint128", - "value": "0x000000000000000000000002540be400", - "value_hint": "1. * 10^10", - "comparison_operator": "Equal" - }, - { - "slot": "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "offset": 16, - "var_name": "staticDynamic[1][1]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000100000", - "value_hint": "1.048576 * 10^6", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "staticDynamic[2].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000001", - "value_hint": "1", - "comparison_operator": "Equal" - }, - { - "slot": "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "offset": 0, - "var_name": "staticDynamic[2][0]", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000100000", - "value_hint": "1.048576 * 10^6", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "staticDynamicAddress[0].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "offset": 0, - "var_name": "staticDynamicAddress[0][0]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000001", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "offset": 0, - "var_name": "staticDynamicAddress[0][1]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000002", - "comparison_operator": "Equal" - }, - { - "slot": "0x4", - "offset": 0, - "var_name": "staticDynamicAddress[1].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "offset": 0, - "var_name": "staticDynamicAddress[1][0]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000011", - "comparison_operator": "Equal" - }, - { - "slot": "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "offset": 0, - "var_name": "staticDynamicAddress[1][1]", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000012", - "comparison_operator": "Equal" - }, - { - "slot": "0x5", - "offset": 0, - "var_name": "staticDynamicAddress[2].length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - } -] \ No newline at end of file diff --git a/tests/data/result_StaticArrayOfStaticArray.json b/tests/data/result_StaticArrayOfStaticArray.json deleted file mode 100644 index de723b27..00000000 --- a/tests/data/result_StaticArrayOfStaticArray.json +++ /dev/null @@ -1,164 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "staticStatic[0][0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x0", - "offset": 8, - "var_name": "staticStatic[0][1]", - "var_type": "t_uint64", - "value": "0x000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0x0", - "offset": 16, - "var_name": "staticStatic[0][2]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x0", - "offset": 24, - "var_name": "staticStatic[0][3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "staticStatic[0][4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x1", - "offset": 8, - "var_name": "staticStatic[0][5]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "staticStatic[1][0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x2", - "offset": 8, - "var_name": "staticStatic[1][1]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x2", - "offset": 16, - "var_name": "staticStatic[1][2]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x2", - "offset": 24, - "var_name": "staticStatic[1][3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "staticStatic[1][4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x3", - "offset": 8, - "var_name": "staticStatic[1][5]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x4", - "offset": 0, - "var_name": "staticStatic[2][0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x4", - "offset": 8, - "var_name": "staticStatic[2][1]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x4", - "offset": 16, - "var_name": "staticStatic[2][2]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x4", - "offset": 24, - "var_name": "staticStatic[2][3]", - "var_type": "t_uint64", - "value": "0x000000000000008e", - "value_hint": "142", - "comparison_operator": "Equal" - }, - { - "slot": "0x5", - "offset": 0, - "var_name": "staticStatic[2][4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x5", - "offset": 8, - "var_name": "staticStatic[2][5]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - } -] \ No newline at end of file diff --git a/tests/data/result_StaticArrayOfStruct.json b/tests/data/result_StaticArrayOfStruct.json deleted file mode 100644 index 4e033d19..00000000 --- a/tests/data/result_StaticArrayOfStruct.json +++ /dev/null @@ -1,141 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "buffer", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "static_array_of_struct[0].A", - "var_type": "t_uint256", - "value": "0x00000000000000000000000000000000000000000000000000000000ffffffff", - "value_hint": "4.294967295 * 10^9", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "static_array_of_struct[0].B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 20, - "var_name": "static_array_of_struct[0].C", - "var_type": "t_bool", - "value": "0x00", - "comparison_operator": "Equal", - "value_hint": "false" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "static_array_of_struct[1].A", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x4", - "offset": 0, - "var_name": "static_array_of_struct[1].B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x4", - "offset": 20, - "var_name": "static_array_of_struct[1].C", - "var_type": "t_bool", - "value": "0x00", - "comparison_operator": "Equal", - "value_hint": "false" - }, - { - "slot": "0x5", - "offset": 0, - "var_name": "static_array_of_struct[2].A", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "var_type": "t_uint256", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x6", - "offset": 0, - "var_name": "static_array_of_struct[2].B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x6", - "offset": 20, - "var_name": "static_array_of_struct[2].C", - "var_type": "t_bool", - "value": "0x00", - "comparison_operator": "Equal", - "value_hint": "false" - }, - { - "slot": "0x7", - "offset": 0, - "var_name": "static_array_of_struct[3].A", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0x8", - "offset": 0, - "var_name": "static_array_of_struct[3].B", - "var_type": "t_address", - "value": "0xa513e6e4b8f2a923d98304ec87f64353c4d5c853", - "comparison_operator": "Equal" - }, - { - "slot": "0x8", - "offset": 20, - "var_name": "static_array_of_struct[3].C", - "var_type": "t_bool", - "value": "0x00", - "comparison_operator": "Equal", - "value_hint": "false" - }, - { - "slot": "0x9", - "offset": 0, - "var_name": "static_array_of_struct[4].A", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "comparison_operator": "Equal", - "value_hint": "0" - }, - { - "slot": "0xa", - "offset": 0, - "var_name": "static_array_of_struct[4].B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0xa", - "offset": 20, - "var_name": "static_array_of_struct[4].C", - "var_type": "t_bool", - "value": "0x01", - "value_hint": "true", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StaticInMapping.json b/tests/data/result_StaticInMapping.json deleted file mode 100644 index b45da8cd..00000000 --- a/tests/data/result_StaticInMapping.json +++ /dev/null @@ -1,191 +0,0 @@ -[ - { - "slot": "0x2", - "offset": 0, - "var_name": "someInt", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000058", - "value_hint": "88", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "dynamicStatic.length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "offset": 0, - "var_name": "static_in_mapping[0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0x755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb640983", - "offset": 0, - "var_name": "static_in_mapping2[16]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", - "offset": 0, - "var_name": "static_in_mapping[0x0000000000000000000000000000000000000001]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "offset": 0, - "var_name": "dynamicStatic[0][0]", - "var_type": "t_uint64", - "value": "0x0000000000000001", - "value_hint": "1", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "offset": 8, - "var_name": "dynamicStatic[0][1]", - "var_type": "t_uint64", - "value": "0x0000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "offset": 16, - "var_name": "dynamicStatic[0][2]", - "var_type": "t_uint64", - "value": "0x0000000000000003", - "value_hint": "3", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "offset": 24, - "var_name": "dynamicStatic[0][3]", - "var_type": "t_uint64", - "value": "0x0000000000000004", - "value_hint": "4", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "offset": 0, - "var_name": "dynamicStatic[0][4]", - "var_type": "t_uint64", - "value": "0x0000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "offset": 8, - "var_name": "dynamicStatic[0][5]", - "var_type": "t_uint64", - "value": "0x0000000000000006", - "value_hint": "6", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "offset": 0, - "var_name": "dynamicStatic[1][0]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "offset": 8, - "var_name": "dynamicStatic[1][1]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "offset": 16, - "var_name": "dynamicStatic[1][2]", - "var_type": "t_uint64", - "value": "0x0de0b6b3a7640000", - "value_hint": "1. * 10^18", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "offset": 24, - "var_name": "dynamicStatic[1][3]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "offset": 0, - "var_name": "dynamicStatic[1][4]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "offset": 8, - "var_name": "dynamicStatic[1][5]", - "var_type": "t_uint64", - "value": "0x0000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428", - "offset": 0, - "var_name": "static_in_mapping2[17]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value_hint": "0", - "comparison_operator": "Equal" - }, - { - "slot": "0xdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3", - "offset": 0, - "var_name": "static_in_mapping[0x0000000000000000000000000000000000000017]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000064", - "value_hint": "100", - "comparison_operator": "Equal" - }, - { - "slot": "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", - "offset": 0, - "var_name": "static_in_mapping[0x5fbdb2315678afecb367f032d93f642f64180aa3]", - "var_type": "t_uint256", - "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "value_hint": "uint256 Max Value", - "comparison_operator": "Equal" - }, - { - "slot": "0xe2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c", - "offset": 0, - "var_name": "static_in_mapping2[5]", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000002d", - "value_hint": "45", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StringMapping.json b/tests/data/result_StringMapping.json deleted file mode 100644 index 1bb13b06..00000000 --- a/tests/data/result_StringMapping.json +++ /dev/null @@ -1,65 +0,0 @@ -[ - { - "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", - "offset": 0, - "var_name": "x[A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string]", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", - "offset": 0, - "var_name": "x[Hello this is a test]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "offset": 0, - "var_name": "y[a].length", - "var_type": "t_uint256", - "value": "0x00000000000000000000000000000000000000000000000000000000000000a7", - "value_hint": "167", - "comparison_operator": "Equal" - }, - { - "slot": "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "offset": 0, - "var_name": "y[a][part_0]", - "var_type": "t_string_storage", - "value": "0x4120766572797665727976657279766572797665727976657279766572797665", - "value_hint": "A veryveryveryveryveryveryveryve", - "comparison_operator": "Equal" - }, - { - "slot": "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "offset": 0, - "var_name": "y[a][part_1]", - "var_type": "t_string_storage", - "value": "0x7279766572797665727976657279766572797665727976657279766572797665", - "value_hint": "ryveryveryveryveryveryveryveryve", - "comparison_operator": "Equal" - }, - { - "slot": "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "offset": 13, - "var_name": "y[a][part_2]", - "var_type": "t_string_storage", - "value": "0x727976657279206c6f6e6720737472696e672e", - "value_hint": "ryvery long string.", - "comparison_operator": "Equal" - }, - { - "slot": "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "offset": 0, - "var_name": "y[abc] (length=14)", - "var_type": "t_string_storage", - "value": "0x612073686f727420737472696e6700000000000000000000000000000000001c", - "value_hint": "a short string", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StructInMapping.json b/tests/data/result_StructInMapping.json deleted file mode 100644 index 70d36a4d..00000000 --- a/tests/data/result_StructInMapping.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "slot": "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].a", - "var_type": "t_uint128", - "value": "0x00000000000000000000000000000001", - "value_hint": "1", - "comparison_operator": "Equal" - }, - { - "slot": "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "offset": 16, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].b", - "var_type": "t_uint128", - "value": "0x0000000000000000000000000000002a", - "value_hint": "42", - "comparison_operator": "Equal" - }, - { - "slot": "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t.length", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000002", - "value_hint": "2", - "comparison_operator": "Equal" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[0].A", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000017", - "value_hint": "23", - "comparison_operator": "Equal" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[0].B", - "var_type": "t_address", - "value": "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "value_hint": "Uniswap: UniversalRouter", - "comparison_operator": "Equal" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "offset": 20, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[0].C", - "var_type": "t_bool", - "value": "0x00", - "comparison_operator": "Equal", - "value_hint": "false" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[1].A", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000007b", - "value_hint": "123", - "comparison_operator": "Equal" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "offset": 0, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[1].B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "offset": 20, - "var_name": "struct_in_mapping[0x610178da211fef7d417bc0e6fed39f05609ad788].t[1].C", - "var_type": "t_bool", - "value": "0x01", - "value_hint": "true", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/result_StructInStruct.json b/tests/data/result_StructInStruct.json deleted file mode 100644 index 5391e8a5..00000000 --- a/tests/data/result_StructInStruct.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "slot": "0x0", - "offset": 0, - "var_name": "structInStructType.a", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000029a", - "value_hint": "666", - "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "structInStructType.b", - "var_type": "t_address", - "value": "0x00000000000000adc04c56bf30ac9d3c0aaf14dc", - "value_hint": "Seaport 1.5", - "comparison_operator": "Equal" - }, - { - "slot": "0x2", - "offset": 0, - "var_name": "structInStructType.t.A", - "var_type": "t_uint256", - "value": "0x000000000000000000000000000000000000000000000000000000000000007b", - "value_hint": "123", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 0, - "var_name": "structInStructType.t.B", - "var_type": "t_address", - "value": "0x0000000000000000000000000000000000000000", - "comparison_operator": "Equal" - }, - { - "slot": "0x3", - "offset": 20, - "var_name": "structInStructType.t.C", - "var_type": "t_bool", - "value": "0x01", - "value_hint": "true", - "comparison_operator": "Equal" - } -] \ No newline at end of file diff --git a/tests/data/trace_BytesMapping.json b/tests/data/trace_BytesMapping.json deleted file mode 100644 index b009b197..00000000 --- a/tests/data/trace_BytesMapping.json +++ /dev/null @@ -1,11047 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x432c6", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e61009b565b6101c860006040518060400160405280600681526020016561626331323360d01b81525060405161008991906101a8565b90815260405190819003602001902055565b6102a660006040518060400160405280600681526020016561626331323360d01b8152506040516100cc91906101a8565b908152602001604051809103902081905550600660006040518060400160405280601481526020017312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b81525060405161011c91906101a8565b90815260200160405180910390208190555060646000604051806040016040528060018152602001604160f81b81525060405161015991906101a8565b9081526020016040518091039020819055507f69521b378c8e35653fada29a3083d5639bd9913a746c511b2d969eb238c87c2a6001602a60405161019e9291906101d7565b60405180910390a1565b6000825160005b818110156101c957602081860181015185830152016101af565b506000920191825250919050565b60408152600080845481600182811c9150808316806101f757607f831692505b6020808410820361021657634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015610235576001811461024b57610276565b60ff198716825285151560051b82019750610276565b60008c81526020902060005b8781101561027057815484820152908601908401610257565b83019850505b5050969096019690965250909594505050505056fea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 200550, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 200547, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 200544, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200532, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 200530, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 200527, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200524, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 200521, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 200511, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 200510, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 200508, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 200505, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 20, - "stack": [ - "0x5" - ] - }, - { - "depth": 1, - "gas": 200502, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200499, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 24, - "stack": [ - "0x5", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200496, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 25, - "stack": [ - "0x5", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200493, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 26, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200490, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 28, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200487, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 29, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200484, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 31, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200481, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "DUP1", - "pc": 32, - "stack": [ - "0x5", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200478, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "PUSH1", - "pc": 33, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200475, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "DUP2", - "pc": 35, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80", - "0x14" - ] - }, - { - "depth": 1, - "gas": 200472, - "gasCost": 9, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 36, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80", - "0x14", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200463, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "PUSH1", - "pc": 37, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200460, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "ADD", - "pc": 39, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200457, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "PUSH32", - "pc": 40, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 200454, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "DUP2", - "pc": 73, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xa0", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 200451, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 74, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xa0", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 200445, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "POP", - "pc": 75, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 200443, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 76, - "stack": [ - "0x5", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200440, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "MLOAD", - "pc": 78, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200437, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", - "pc": 79, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200434, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP2", - "pc": 82, - "stack": [ - "0x5", - "0x0", - "0x80", - "0xc0", - "0x58" - ] - }, - { - "depth": 1, - "gas": 200431, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", - "pc": 83, - "stack": [ - "0x5", - "0x0", - "0x58", - "0xc0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200428, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", - "pc": 84, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200425, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMP", - "pc": 87, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0xf0" - ] - }, - { - "depth": 1, - "gas": 200417, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 240, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200416, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 241, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200413, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP3", - "pc": 243, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200410, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "MLOAD", - "pc": 244, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200407, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 245, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14" - ] - }, - { - "depth": 1, - "gas": 200404, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200403, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200400, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x14" - ] - }, - { - "depth": 1, - "gas": 200397, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x14", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200394, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 200391, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200388, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 200378, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 256, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 258, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP7", - "pc": 259, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 260, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200366, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 261, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200363, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 262, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200360, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "MLOAD", - "pc": 263, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 200357, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP6", - "pc": 264, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 200354, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP4", - "pc": 265, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200351, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 266, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200348, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 267, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200342, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 268, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200339, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", - "pc": 269, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200336, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMP", - "pc": 272, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 200328, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200327, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0x14" - ] - }, - { - "depth": 1, - "gas": 200321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200318, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200315, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 200312, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20", - "0x1", - "0x111" - ] - }, - { - "depth": 1, - "gas": 200302, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 273, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200301, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "POP", - "pc": 274, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200299, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 275, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14" - ] - }, - { - "depth": 1, - "gas": 200296, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP3", - "pc": 277, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xc0", - "0x0", - "0x14", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200293, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 278, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0x0", - "0x0", - "0x14", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200290, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP2", - "pc": 279, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0x0", - "0x0", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200287, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP3", - "pc": 280, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xd4", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200284, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 281, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xd4", - "0x0", - "0x0", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200278, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 282, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xd4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200276, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 283, - "stack": [ - "0x5", - "0x0", - "0x58", - "0x80", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200273, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 284, - "stack": [ - "0x5", - "0x0", - "0xd4", - "0x80", - "0x58" - ] - }, - { - "depth": 1, - "gas": 200270, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 285, - "stack": [ - "0x5", - "0x0", - "0xd4", - "0x58", - "0x80" - ] - }, - { - "depth": 1, - "gas": 200268, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 286, - "stack": [ - "0x5", - "0x0", - "0xd4", - "0x58" - ] - }, - { - "depth": 1, - "gas": 200260, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 88, - "stack": [ - "0x5", - "0x0", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200259, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 89, - "stack": [ - "0x5", - "0x0", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200256, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 90, - "stack": [ - "0x5", - "0xd4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 200253, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 91, - "stack": [ - "0x5", - "0xd4", - "0x0", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200250, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 92, - "stack": [ - "0x5", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 200247, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 94, - "stack": [ - "0x5", - "0xd4", - "0x20" - ] - }, - { - "depth": 1, - "gas": 200244, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 95, - "stack": [ - "0x5", - "0xf4" - ] - }, - { - "depth": 1, - "gas": 200241, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 97, - "stack": [ - "0x5", - "0xf4", - "0x40" - ] - }, - { - "depth": 1, - "gas": 200238, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 98, - "stack": [ - "0x5", - "0xf4", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200235, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 99, - "stack": [ - "0x5", - "0xf4", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200232, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 100, - "stack": [ - "0x5", - "0xc0", - "0xc0", - "0xf4" - ] - }, - { - "depth": 1, - "gas": 200229, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 101, - "stack": [ - "0x5", - "0xc0", - "0x34" - ] - }, - { - "depth": 1, - "gas": 200226, - "gasCost": 42, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 102, - "stack": [ - "0x5", - "0x34", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 200184, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 103, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 200181, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 104, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", - "0x5" - ] - }, - { - "depth": 1, - "gas": 200178, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 105, - "stack": [ - "0x5", - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 178078, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 106, - "stack": [ - "0x5" - ] - }, - { - "depth": 1, - "gas": 178076, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 107, - "stack": [] - }, - { - "depth": 1, - "gas": 178073, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 109, - "stack": [ - "0x2a" - ] - }, - { - "depth": 1, - "gas": 178070, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 111, - "stack": [ - "0x2a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 178067, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 113, - "stack": [ - "0x2a", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 178064, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 114, - "stack": [ - "0x2a", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178061, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 115, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178058, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 117, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 178055, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 118, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 178052, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 120, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 178049, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 121, - "stack": [ - "0x2a", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178046, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 122, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178043, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 124, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0", - "0x52" - ] - }, - { - "depth": 1, - "gas": 178040, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 125, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0", - "0x52", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178037, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 126, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178034, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 128, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 178031, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 129, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 178028, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 132, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xe0", - "0x524" - ] - }, - { - "depth": 1, - "gas": 178025, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 134, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0xe0", - "0x524", - "0x52" - ] - }, - { - "depth": 1, - "gas": 178022, - "gasCost": 18, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 135, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x52", - "0x524", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 178004, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 136, - "stack": [ - "0x2a", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 178001, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 138, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177998, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 139, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177995, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 142, - "stack": [ - "0x2a", - "0x0", - "0xc0", - "0x140", - "0x94" - ] - }, - { - "depth": 1, - "gas": 177992, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 143, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0x140", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177989, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 144, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177986, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMP", - "pc": 147, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0xf0" - ] - }, - { - "depth": 1, - "gas": 177978, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 240, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177977, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 241, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177974, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP3", - "pc": 243, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177971, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 244, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177968, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 245, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177965, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177964, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177961, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x52", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 177952, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177949, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177939, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 256, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177936, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 258, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177933, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP7", - "pc": 259, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177930, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 260, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177927, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 261, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177924, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 262, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177921, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 263, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 177918, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP6", - "pc": 264, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 177915, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP4", - "pc": 265, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177912, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 266, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177909, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 267, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177903, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 268, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177900, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH2", - "pc": 269, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177897, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMP", - "pc": 272, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177889, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177888, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177885, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177882, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x52", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177879, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 177876, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177873, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177863, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", - "pc": 256, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177860, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 258, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177857, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP7", - "pc": 259, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177854, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 260, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x20", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177851, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 261, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 177848, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 262, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0xe0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177845, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "MLOAD", - "pc": 263, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x100" - ] - }, - { - "depth": 1, - "gas": 177842, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP6", - "pc": 264, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 177839, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP4", - "pc": 265, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177836, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 266, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177833, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 267, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x160" - ] - }, - { - "depth": 1, - "gas": 177827, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 268, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177824, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH2", - "pc": 269, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177821, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMP", - "pc": 272, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177813, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177812, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177809, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177806, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x52", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177803, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x1" - ] - }, - { - "depth": 1, - "gas": 177800, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177797, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177787, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", - "pc": 256, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177784, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 258, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177781, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP7", - "pc": 259, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177778, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 260, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x40", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177775, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP2", - "pc": 261, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x100" - ] - }, - { - "depth": 1, - "gas": 177772, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 262, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x100", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177769, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "MLOAD", - "pc": 263, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x120" - ] - }, - { - "depth": 1, - "gas": 177766, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP6", - "pc": 264, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 177763, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP4", - "pc": 265, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177760, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 266, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177757, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 267, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0x180" - ] - }, - { - "depth": 1, - "gas": 177751, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 268, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x40", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177748, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 269, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177745, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMP", - "pc": 272, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177737, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 247, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177736, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 248, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177733, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 249, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177730, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "LT", - "pc": 250, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177727, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 251, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177724, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 252, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0x1" - ] - }, - { - "depth": 1, - "gas": 177721, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 255, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60", - "0x1", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177711, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 273, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177710, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "POP", - "pc": 274, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x60" - ] - }, - { - "depth": 1, - "gas": 177708, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 275, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52" - ] - }, - { - "depth": 1, - "gas": 177705, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 277, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x140", - "0x0", - "0x52", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177702, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 278, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x0", - "0x0", - "0x52", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177699, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 279, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x0", - "0x0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177696, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP3", - "pc": 280, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x192", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177693, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 281, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x192", - "0x0", - "0x0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177687, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 282, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x192", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177685, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 283, - "stack": [ - "0x2a", - "0x0", - "0x94", - "0xc0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177682, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 284, - "stack": [ - "0x2a", - "0x0", - "0x192", - "0xc0", - "0x94" - ] - }, - { - "depth": 1, - "gas": 177679, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 285, - "stack": [ - "0x2a", - "0x0", - "0x192", - "0x94", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 177677, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 286, - "stack": [ - "0x2a", - "0x0", - "0x192", - "0x94" - ] - }, - { - "depth": 1, - "gas": 177669, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 148, - "stack": [ - "0x2a", - "0x0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177668, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 149, - "stack": [ - "0x2a", - "0x0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177665, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 150, - "stack": [ - "0x2a", - "0x192", - "0x0" - ] - }, - { - "depth": 1, - "gas": 177662, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 151, - "stack": [ - "0x2a", - "0x192", - "0x0", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177659, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 152, - "stack": [ - "0x2a", - "0x192" - ] - }, - { - "depth": 1, - "gas": 177656, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 154, - "stack": [ - "0x2a", - "0x192", - "0x20" - ] - }, - { - "depth": 1, - "gas": 177653, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 155, - "stack": [ - "0x2a", - "0x1b2" - ] - }, - { - "depth": 1, - "gas": 177650, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 157, - "stack": [ - "0x2a", - "0x1b2", - "0x40" - ] - }, - { - "depth": 1, - "gas": 177647, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 158, - "stack": [ - "0x2a", - "0x1b2", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177644, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 159, - "stack": [ - "0x2a", - "0x1b2", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177641, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 160, - "stack": [ - "0x2a", - "0x140", - "0x140", - "0x1b2" - ] - }, - { - "depth": 1, - "gas": 177638, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 161, - "stack": [ - "0x2a", - "0x140", - "0x72" - ] - }, - { - "depth": 1, - "gas": 177635, - "gasCost": 54, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 162, - "stack": [ - "0x2a", - "0x72", - "0x140" - ] - }, - { - "depth": 1, - "gas": 177581, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 163, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 177578, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 164, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", - "0x2a" - ] - }, - { - "depth": 1, - "gas": 177575, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 165, - "stack": [ - "0x2a", - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 155475, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 166, - "stack": [ - "0x2a" - ] - }, - { - "depth": 1, - "gas": 155473, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 167, - "stack": [] - }, - { - "depth": 1, - "gas": 155470, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 169, - "stack": [ - "0x40" - ] - }, - { - "depth": 1, - "gas": 155467, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 170, - "stack": [ - "0x140" - ] - }, - { - "depth": 1, - "gas": 155464, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 171, - "stack": [ - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155461, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 173, - "stack": [ - "0x140", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 155458, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 174, - "stack": [ - "0x140", - "0x180" - ] - }, - { - "depth": 1, - "gas": 155455, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 176, - "stack": [ - "0x140", - "0x180", - "0x40" - ] - }, - { - "depth": 1, - "gas": 155452, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 177, - "stack": [ - "0x140" - ] - }, - { - "depth": 1, - "gas": 155449, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 178, - "stack": [ - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155446, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 180, - "stack": [ - "0x140", - "0x140", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155443, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 181, - "stack": [ - "0x140", - "0x140", - "0x17", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155440, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 182, - "stack": [ - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155437, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 184, - "stack": [ - "0x140", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 155434, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 185, - "stack": [ - "0x140", - "0x160" - ] - }, - { - "depth": 1, - "gas": 155431, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 218, - "stack": [ - "0x140", - "0x160", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 155428, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 219, - "stack": [ - "0x140", - "0x160", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x160" - ] - }, - { - "depth": 1, - "gas": 155425, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 220, - "stack": [ - "0x140", - "0x160" - ] - }, - { - "depth": 1, - "gas": 155423, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 221, - "stack": [ - "0x140" - ] - }, - { - "depth": 1, - "gas": 155420, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 223, - "stack": [ - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155417, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 224, - "stack": [ - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155414, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 225, - "stack": [ - "0x1", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155411, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 228, - "stack": [ - "0x1", - "0x140", - "0x1", - "0xea" - ] - }, - { - "depth": 1, - "gas": 155408, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 229, - "stack": [ - "0x1", - "0xea", - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155405, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 230, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155402, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 233, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x1be" - ] - }, - { - "depth": 1, - "gas": 155394, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 446, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155393, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 447, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155390, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 448, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 155387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 449, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155384, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 451, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155381, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 453, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155378, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 455, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 155375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 456, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 155372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 457, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 155369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 458, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0xffffffffffffffff", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155366, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 459, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 155363, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 460, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1" - ] - }, - { - "depth": 1, - "gas": 155360, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 463, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1", - "0x1d7" - ] - }, - { - "depth": 1, - "gas": 155350, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 471, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155349, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 472, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155346, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 475, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb" - ] - }, - { - "depth": 1, - "gas": 155343, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 476, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17" - ] - }, - { - "depth": 1, - "gas": 155340, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 479, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 155337, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 480, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153237, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 481, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153234, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 484, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x135" - ] - }, - { - "depth": 1, - "gas": 153226, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 309, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153225, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 310, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153222, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 312, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153219, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 313, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153216, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 314, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153213, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 315, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153210, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 316, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153207, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 317, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153204, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 318, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153201, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153198, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 322, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x0", - "0x149" - ] - }, - { - "depth": 1, - "gas": 153188, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 323, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153185, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 325, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x7f" - ] - }, - { - "depth": 1, - "gas": 153182, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 326, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x7f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153179, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 327, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153176, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 328, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153174, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 329, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153173, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 330, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153170, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 332, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153167, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 333, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153164, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 334, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153161, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 335, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153158, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 336, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 153155, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 339, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x169" - ] - }, - { - "depth": 1, - "gas": 153145, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 361, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153144, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 362, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153142, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 363, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x1e5", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153139, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 364, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x0", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 153136, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 365, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1e5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153134, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 366, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 153126, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 485, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153125, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 486, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153122, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 487, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153119, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 490, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x16f" - ] - }, - { - "depth": 1, - "gas": 153111, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 367, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153110, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 368, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153107, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 370, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 153104, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 371, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x1f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153101, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 372, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153098, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 373, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153095, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 376, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1", - "0x1", - "0x1b9" - ] - }, - { - "depth": 1, - "gas": 153085, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 441, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153084, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 442, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153082, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 443, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153080, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 444, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb", - "0x17" - ] - }, - { - "depth": 1, - "gas": 153078, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 445, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x1eb" - ] - }, - { - "depth": 1, - "gas": 153070, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 491, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 153069, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 492, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 153066, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 494, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153063, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 495, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153060, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 497, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 153057, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 498, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x1f", - "0x17" - ] - }, - { - "depth": 1, - "gas": 153054, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 499, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153051, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 501, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 153048, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EQ", - "pc": 502, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153045, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 503, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153042, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 506, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0", - "0x220" - ] - }, - { - "depth": 1, - "gas": 153032, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 507, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153029, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 509, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153026, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 510, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0", - "0x17" - ] - }, - { - "depth": 1, - "gas": 153023, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 511, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153020, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 514, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0", - "0x0", - "0x208" - ] - }, - { - "depth": 1, - "gas": 153010, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 515, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153008, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 516, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 153005, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 517, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153002, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 518, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 152999, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 519, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x160" - ] - }, - { - "depth": 1, - "gas": 152996, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 520, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152995, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 521, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152992, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 523, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 152989, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 524, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 152986, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 526, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3" - ] - }, - { - "depth": 1, - "gas": 152983, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 527, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3", - "0x17" - ] - }, - { - "depth": 1, - "gas": 152980, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 528, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x17", - "0x3" - ] - }, - { - "depth": 1, - "gas": 152977, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 529, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0xb8" - ] - }, - { - "depth": 1, - "gas": 152974, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 530, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 152971, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 531, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffff000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152968, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 532, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152965, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 534, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 152962, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 535, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 152959, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 536, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x17", - "0x1" - ] - }, - { - "depth": 1, - "gas": 152956, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 537, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x2e" - ] - }, - { - "depth": 1, - "gas": 152953, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 538, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e" - ] - }, - { - "depth": 1, - "gas": 152950, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 539, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", - "0x1" - ] - }, - { - "depth": 1, - "gas": 132950, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 540, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132947, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 543, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x1b5" - ] - }, - { - "depth": 1, - "gas": 132939, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 437, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132938, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 438, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132936, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 439, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 132934, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 440, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20" - ] - }, - { - "depth": 1, - "gas": 132932, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 441, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 132931, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 442, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" - ] - }, - { - "depth": 1, - "gas": 132929, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 443, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 132927, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 444, - "stack": [ - "0x1", - "0xea", - "0x140" - ] - }, - { - "depth": 1, - "gas": 132925, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 445, - "stack": [ - "0x1", - "0xea" - ] - }, - { - "depth": 1, - "gas": 132917, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 234, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 132916, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 235, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 132914, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 236, - "stack": [] - }, - { - "depth": 1, - "gas": 132911, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 239, - "stack": [ - "0x27d" - ] - }, - { - "depth": 1, - "gas": 132903, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 637, - "stack": [] - }, - { - "depth": 1, - "gas": 132902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 638, - "stack": [] - }, - { - "depth": 1, - "gas": 132899, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 641, - "stack": [ - "0x298" - ] - }, - { - "depth": 1, - "gas": 132896, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 642, - "stack": [ - "0x298", - "0x298" - ] - }, - { - "depth": 1, - "gas": 132893, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 645, - "stack": [ - "0x298", - "0x298", - "0x28c" - ] - }, - { - "depth": 1, - "gas": 132890, - "gasCost": 87, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 647, - "stack": [ - "0x298", - "0x298", - "0x28c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132803, - "gasCost": 3, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e61009b565b6101c860006040", - "518060400160405280600681526020016561626331323360d01b815250604051", - "61008991906101a8565b90815260405190819003602001902055565b6102a660", - "006040518060400160405280600681526020016561626331323360d01b815250", - "6040516100cc91906101a8565b90815260200160405180910390208190555060", - "0660006040518060400160405280601481526020017312195b1b1bc81d1a1a5c", - "c81a5cc818481d195cdd60621b81525060405161011c91906101a8565b908152", - "6020016040518091039020819055506064600060405180604001604052806001", - "8152602001604160f81b81525060405161015991906101a8565b908152602001", - "6040518091039020819055507f69521b378c8e35653fada29a3083d5639bd991", - "3a746c511b2d969eb238c87c2a6001602a60405161019e9291906101d7565b60", - "405180910390a1565b6000825160005b818110156101c9576020818601810151", - "85830152016101af565b506000920191825250919050565b6040815260008084", - "5481600182811c9150808316806101f757607f831692505b6020808410820361", - "021657634e487b7160e01b86526022600452602486fd5b604088018490526060", - "8801828015610235576001811461024b57610276565b60ff1987168252851515", - "60051b82019750610276565b60008c81526020902060005b8781101561027057", - "815484820152908601908401610257565b83019850505b505096909601969096", - "5250909594505050505056fea164736f6c6343000815000a0000000000000000" - ], - "op": "PUSH1", - "pc": 648, - "stack": [ - "0x298" - ] - }, - { - "depth": 1, - "gas": 132800, - "gasCost": 0, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e61009b565b6101c860006040", - "518060400160405280600681526020016561626331323360d01b815250604051", - "61008991906101a8565b90815260405190819003602001902055565b6102a660", - "006040518060400160405280600681526020016561626331323360d01b815250", - "6040516100cc91906101a8565b90815260200160405180910390208190555060", - "0660006040518060400160405280601481526020017312195b1b1bc81d1a1a5c", - "c81a5cc818481d195cdd60621b81525060405161011c91906101a8565b908152", - "6020016040518091039020819055506064600060405180604001604052806001", - "8152602001604160f81b81525060405161015991906101a8565b908152602001", - "6040518091039020819055507f69521b378c8e35653fada29a3083d5639bd991", - "3a746c511b2d969eb238c87c2a6001602a60405161019e9291906101d7565b60", - "405180910390a1565b6000825160005b818110156101c9576020818601810151", - "85830152016101af565b506000920191825250919050565b6040815260008084", - "5481600182811c9150808316806101f757607f831692505b6020808410820361", - "021657634e487b7160e01b86526022600452602486fd5b604088018490526060", - "8801828015610235576001811461024b57610276565b60ff1987168252851515", - "60051b82019750610276565b60008c81526020902060005b8781101561027057", - "815484820152908601908401610257565b83019850505b505096909601969096", - "5250909594505050505056fea164736f6c6343000815000a0000000000000000" - ], - "op": "RETURN", - "pc": 650, - "stack": [ - "0x298", - "0x0" - ] - } - ] - }, - "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "tx_id": "0xa0741ac64aba2c1bd01987ef6b05b59d4d24f782eaa8f1df6ecfc78a6b74fca2" -} \ No newline at end of file diff --git a/tests/data/trace_CrazyStruct.json b/tests/data/trace_CrazyStruct.json deleted file mode 100644 index 0d26206a..00000000 --- a/tests/data/trace_CrazyStruct.json +++ /dev/null @@ -1,2421 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x3a54f", - "returnValue": "0x6080604052348015600f57600080fd5b5060043610603c5760003560e01c806326121ff014604157806332e43a11146050578063e2179b8e146052575b600080fd5b60506101c86000556040600155565b005b600380546001600160c01b0316600360c01b17905500fea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 180997, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 180994, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 180991, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 180979, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 180977, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 180974, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 180971, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 180968, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 180958, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 180957, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 180955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 180952, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 21, - "stack": [ - "0x539" - ] - }, - { - "depth": 1, - "gas": 180949, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 23, - "stack": [ - "0x539", - "0x0" - ] - }, - { - "depth": 1, - "gas": 180946, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 24, - "stack": [ - "0x0", - "0x539" - ] - }, - { - "depth": 1, - "gas": 180943, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 25, - "stack": [ - "0x0", - "0x539", - "0x0" - ] - }, - { - "depth": 1, - "gas": 158843, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 26, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 158840, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 28, - "stack": [ - "0x0", - "0x41" - ] - }, - { - "depth": 1, - "gas": 158837, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 30, - "stack": [ - "0x0", - "0x41", - "0x1" - ] - }, - { - "depth": 1, - "gas": 158834, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 31, - "stack": [ - "0x0", - "0x1", - "0x41" - ] - }, - { - "depth": 1, - "gas": 158831, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 32, - "stack": [ - "0x0", - "0x1", - "0x41", - "0x1" - ] - }, - { - "depth": 1, - "gas": 136731, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 33, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 136728, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 35, - "stack": [ - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 136725, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 36, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 134625, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH21", - "pc": 37, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 134622, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 59, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" - ] - }, - { - "depth": 1, - "gas": 134619, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 61, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x1" - ] - }, - { - "depth": 1, - "gas": 134616, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 63, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 134613, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 65, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x1", - "0x1", - "0xa8" - ] - }, - { - "depth": 1, - "gas": 134610, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 66, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x1", - "0x1000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 134607, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 67, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0xffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 134604, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 68, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 134601, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 69, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" - ] - }, - { - "depth": 1, - "gas": 134598, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 70, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 134595, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 71, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x0" - ] - }, - { - "depth": 1, - "gas": 134592, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 72, - "stack": [ - "0x0", - "0x1", - "0x2", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" - ] - }, - { - "depth": 1, - "gas": 134589, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 73, - "stack": [ - "0x0", - "0x1", - "0x195ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "0x2" - ] - }, - { - "depth": 1, - "gas": 114589, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 74, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 114586, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 76, - "stack": [ - "0x0", - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 114583, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 77, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 112483, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH9", - "pc": 78, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112480, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 88, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000" - ] - }, - { - "depth": 1, - "gas": 112477, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 90, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112474, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 92, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 112471, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 93, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 112468, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 95, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112465, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 97, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x10000000000000000", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112462, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 98, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0x10000000000000000", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 112459, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 99, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0xffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 112456, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 100, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x0", - "0x2a0000000000000000", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 112453, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 101, - "stack": [ - "0x0", - "0x1", - "0x3", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x2a0000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112450, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 102, - "stack": [ - "0x0", - "0x1", - "0x3", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x2a0000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 112447, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 103, - "stack": [ - "0x0", - "0x1", - "0x3", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x2a0000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112444, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 104, - "stack": [ - "0x0", - "0x1", - "0x3", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x2a0000000000000000" - ] - }, - { - "depth": 1, - "gas": 112441, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 105, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x2a0000000000000000", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 112438, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 106, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x2a0000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 92438, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 107, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 92435, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 109, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x4" - ] - }, - { - "depth": 1, - "gas": 92432, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 110, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x4", - "0x4" - ] - }, - { - "depth": 1, - "gas": 90332, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH9", - "pc": 111, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 90329, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 121, - "stack": [ - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff", - "0x4", - "0x0", - "0x7c0000000000000000" - ] - }, - { - "depth": 1, - "gas": 90326, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 122, - "stack": [ - "0x0", - "0x1", - "0x7c0000000000000000", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 90323, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 123, - "stack": [ - "0x0", - "0x1", - "0x7c0000000000000000", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 90320, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 124, - "stack": [ - "0x0", - "0x1", - "0x0", - "0x4", - "0x7c0000000000000000" - ] - }, - { - "depth": 1, - "gas": 90317, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 125, - "stack": [ - "0x0", - "0x1", - "0x0", - "0x7c0000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 90314, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 126, - "stack": [ - "0x0", - "0x1", - "0x4", - "0x7c0000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 90311, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 127, - "stack": [ - "0x0", - "0x1", - "0x4", - "0x7c0000000000000000" - ] - }, - { - "depth": 1, - "gas": 90308, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 128, - "stack": [ - "0x0", - "0x1", - "0x7c0000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 70308, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 129, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 70305, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 131, - "stack": [ - "0x0", - "0x1", - "0x5" - ] - }, - { - "depth": 1, - "gas": 70302, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 132, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x5" - ] - }, - { - "depth": 1, - "gas": 68202, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 133, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68199, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 135, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68196, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 137, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68193, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 139, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 68190, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 140, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 68187, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 141, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 68184, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 142, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 68181, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 143, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68178, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 145, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 68175, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 146, - "stack": [ - "0x0", - "0x1", - "0x5", - "0x80" - ] - }, - { - "depth": 1, - "gas": 68172, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 147, - "stack": [ - "0x0", - "0x1", - "0x80", - "0x5" - ] - }, - { - "depth": 1, - "gas": 48172, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADDRESS", - "pc": 148, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48170, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 149, - "stack": [ - "0x0", - "0x1", - "0xe7f1725e7734ce288f8367e1bb143e90bb3f0512" - ] - }, - { - "depth": 1, - "gas": 48167, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 150, - "stack": [ - "0x0", - "0x1", - "0xe7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48164, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 151, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48161, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 153, - "stack": [ - "0x0", - "0x1", - "0x6" - ] - }, - { - "depth": 1, - "gas": 48158, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 155, - "stack": [ - "0x0", - "0x1", - "0x6", - "0x20" - ] - }, - { - "depth": 1, - "gas": 48155, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 156, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x6" - ] - }, - { - "depth": 1, - "gas": 48152, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 157, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x6", - "0x20" - ] - }, - { - "depth": 1, - "gas": 48149, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 158, - "stack": [ - "0x0", - "0x1", - "0x20" - ] - }, - { - "depth": 1, - "gas": 48146, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 160, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48143, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 161, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48140, - "gasCost": 42, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 162, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48098, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 163, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575" - ] - }, - { - "depth": 1, - "gas": 48095, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 165, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0x2a" - ] - }, - { - "depth": 1, - "gas": 48092, - "gasCost": 3, - "memory": [ - "000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f0512", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 166, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0x2a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48089, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 167, - "stack": [ - "0x0", - "0x1", - "0x20", - "0x40", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575" - ] - }, - { - "depth": 1, - "gas": 48086, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 168, - "stack": [ - "0x0", - "0x1", - "0x20", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48083, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 169, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xdc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0x20" - ] - }, - { - "depth": 1, - "gas": 48080, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 170, - "stack": [ - "0x0", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48077, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 171, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48074, - "gasCost": 42, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 172, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48032, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 173, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab" - ] - }, - { - "depth": 1, - "gas": 48029, - "gasCost": 2100, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 174, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab" - ] - }, - { - "depth": 1, - "gas": 45929, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 175, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45926, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 177, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0x0", - "0xff" - ] - }, - { - "depth": 1, - "gas": 45923, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 178, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 45920, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 179, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45917, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 180, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 45914, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 181, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45911, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 182, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 45908, - "gasCost": 100, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 183, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x0", - "0xf54b6e7eee39be33e776eea7dbc47e8934f541552023098d6f910795560f02ab" - ] - }, - { - "depth": 1, - "gas": 45808, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 184, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 45805, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 186, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45802, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 187, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 45799, - "gasCost": 3, - "memory": [ - "000000000000000000000000000000000000000000000000000000000000002a", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 188, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45796, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 189, - "stack": [ - "0x0", - "0x1", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 45793, - "gasCost": 42, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 190, - "stack": [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x1", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 45751, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 191, - "stack": [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x1", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a" - ] - }, - { - "depth": 1, - "gas": 45748, - "gasCost": 2100, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 192, - "stack": [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x1", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a" - ] - }, - { - "depth": 1, - "gas": 43648, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 193, - "stack": [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x1", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 43645, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 194, - "stack": [ - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "0x1", - "0x0", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a" - ] - }, - { - "depth": 1, - "gas": 43642, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 195, - "stack": [ - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 43639, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 196, - "stack": [ - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 43636, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 197, - "stack": [ - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a", - "0x1" - ] - }, - { - "depth": 1, - "gas": 43633, - "gasCost": 20000, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 198, - "stack": [ - "0x1", - "0xc860934bf7201dc7e4a1c0e285c4f6618fb675f2d5a2db3639adf5f8903aec4a" - ] - }, - { - "depth": 1, - "gas": 23633, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 199, - "stack": [] - }, - { - "depth": 1, - "gas": 23630, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 201, - "stack": [ - "0x76" - ] - }, - { - "depth": 1, - "gas": 23627, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 202, - "stack": [ - "0x76", - "0x76" - ] - }, - { - "depth": 1, - "gas": 23624, - "gasCost": 3, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 205, - "stack": [ - "0x76", - "0x76", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 23621, - "gasCost": 18, - "memory": [ - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "dc124680d5a35ba736f1bca0c67fb76cf3fcf929720735db2eead3a80d6d7575", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 207, - "stack": [ - "0x76", - "0x76", - "0xd4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 23603, - "gasCost": 3, - "memory": [ - "6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063", - "26121ff014604157806332e43a11146050578063e2179b8e146052575b600080", - "fd5b60506101c86000556040600155565b005b600380546001600160c01b0316", - "600360c01b17905500fea164736f6c6343000815000a00000000000000000000" - ], - "op": "PUSH1", - "pc": 208, - "stack": [ - "0x76" - ] - }, - { - "depth": 1, - "gas": 23600, - "gasCost": 0, - "memory": [ - "6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063", - "26121ff014604157806332e43a11146050578063e2179b8e146052575b600080", - "fd5b60506101c86000556040600155565b005b600380546001600160c01b0316", - "600360c01b17905500fea164736f6c6343000815000a00000000000000000000" - ], - "op": "RETURN", - "pc": 210, - "stack": [ - "0x76", - "0x0" - ] - } - ] - }, - "address": "0xe7f1725e7734ce288f8367e1bb143e90bb3f0512", - "tx_id": "0x029215d21b3a6e7a60f1db6b31ef5bc356571a3823063f64b825e35c7c6fbc33" -} \ No newline at end of file diff --git a/tests/data/trace_DynamicArrayOfStaticArray.json b/tests/data/trace_DynamicArrayOfStaticArray.json deleted file mode 100644 index 596a4a73..00000000 --- a/tests/data/trace_DynamicArrayOfStaticArray.json +++ /dev/null @@ -1,37498 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x27a72", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 101954, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 101951, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 101948, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 101936, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 101934, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 101931, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 101928, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101925, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 101915, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 101914, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 101912, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 101909, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 20, - "stack": [ - "0x40" - ] - }, - { - "depth": 1, - "gas": 101906, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 21, - "stack": [ - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 101903, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x40", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101900, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 24, - "stack": [ - "0x40", - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 101897, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 25, - "stack": [ - "0x40", - "0x80", - "0xc0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101894, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 26, - "stack": [ - "0x40", - "0x80", - "0x140" - ] - }, - { - "depth": 1, - "gas": 101891, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 27, - "stack": [ - "0x40", - "0x80", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 101888, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "op": "PUSH1", - "pc": 28, - "stack": [ - "0x40", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101885, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "op": "DUP1", - "pc": 30, - "stack": [ - "0x40", - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101882, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ], - "op": "DUP3", - "pc": 31, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101879, - "gasCost": 9, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 32, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101870, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 33, - "stack": [ - "0x40", - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101867, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 35, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 101864, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP4", - "pc": 37, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0x20" - ] - }, - { - "depth": 1, - "gas": 101861, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 38, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101858, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 39, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 101855, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 40, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0xa0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 101852, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 41, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0x2", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 101846, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 42, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 101843, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP4", - "pc": 44, - "stack": [ - "0x40", - "0x80", - "0x1", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 101840, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP4", - "pc": 45, - "stack": [ - "0x3", - "0x80", - "0x1", - "0x2", - "0x40" - ] - }, - { - "depth": 1, - "gas": 101837, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "ADD", - "pc": 46, - "stack": [ - "0x3", - "0x80", - "0x1", - "0x2", - "0x40", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101834, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP4", - "pc": 47, - "stack": [ - "0x3", - "0x80", - "0x1", - "0x2", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 101831, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP1", - "pc": 48, - "stack": [ - "0xc0", - "0x80", - "0x1", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 101828, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP4", - "pc": 49, - "stack": [ - "0xc0", - "0x80", - "0x1", - "0x3", - "0x2" - ] - }, - { - "depth": 1, - "gas": 101825, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 50, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x3", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 101819, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "op": "PUSH1", - "pc": 51, - "stack": [ - "0x2", - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101816, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "op": "PUSH1", - "pc": 53, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x4" - ] - }, - { - "depth": 1, - "gas": 101813, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "op": "DUP4", - "pc": 55, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x4", - "0x60" - ] - }, - { - "depth": 1, - "gas": 101810, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "op": "ADD", - "pc": 56, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x4", - "0x60", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101807, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 57, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x4", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 101801, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "op": "PUSH1", - "pc": 58, - "stack": [ - "0x2", - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101798, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "op": "PUSH1", - "pc": 60, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x5" - ] - }, - { - "depth": 1, - "gas": 101795, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "op": "DUP4", - "pc": 62, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x5", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101792, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "op": "ADD", - "pc": 63, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x5", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101789, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 64, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x5", - "0x100" - ] - }, - { - "depth": 1, - "gas": 101783, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "PUSH1", - "pc": 65, - "stack": [ - "0x2", - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 101780, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "PUSH1", - "pc": 67, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6" - ] - }, - { - "depth": 1, - "gas": 101777, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "DUP4", - "pc": 69, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 101774, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "ADD", - "pc": 70, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 101771, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "DUP2", - "pc": 71, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x120" - ] - }, - { - "depth": 1, - "gas": 101768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ], - "op": "SWAP1", - "pc": 72, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x120", - "0x6" - ] - }, - { - "depth": 1, - "gas": 101765, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 73, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x6", - "0x120" - ] - }, - { - "depth": 1, - "gas": 101759, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 74, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6" - ] - }, - { - "depth": 1, - "gas": 101756, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 76, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 101753, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 77, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 99653, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 78, - "stack": [ - "0x2", - "0x80", - "0x1", - "0x6", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 99650, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 79, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 99647, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 80, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 99644, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 81, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 99641, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 82, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79641, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 83, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79638, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MSTORE", - "pc": 84, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79635, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 85, - "stack": [ - "0x2", - "0x80", - "0x0", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79632, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 86, - "stack": [ - "0x2", - "0x6", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79629, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 87, - "stack": [ - "0x80", - "0x6", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 79626, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 90, - "stack": [ - "0x80", - "0x6", - "0x0", - "0x2", - "0x74" - ] - }, - { - "depth": 1, - "gas": 79623, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 91, - "stack": [ - "0x80", - "0x74", - "0x0", - "0x2", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79620, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 92, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79615, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 93, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79612, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 95, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79609, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 96, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79606, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 97, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79603, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 99, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 79600, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 102, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0", - "0x20", - "0x1c1" - ] - }, - { - "depth": 1, - "gas": 79597, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "CODECOPY", - "pc": 103, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0", - "0x20", - "0x1c1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79591, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 104, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79588, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 105, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79585, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 106, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79582, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MSTORE", - "pc": 107, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79579, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 108, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79576, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 109, - "stack": [ - "0x80", - "0x74", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79573, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 110, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79570, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 111, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x6", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79567, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 112, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79564, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 115, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6", - "0xe3" - ] - }, - { - "depth": 1, - "gas": 79556, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 227, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79555, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 228, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79552, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 230, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6", - "0x2" - ] - }, - { - "depth": 1, - "gas": 79549, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 231, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79546, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 232, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 79543, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 233, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79540, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 234, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79537, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 235, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79534, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 236, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79531, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 237, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79528, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 240, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80", - "0x0", - "0x178" - ] - }, - { - "depth": 1, - "gas": 79518, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 241, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79515, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 242, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x6" - ] - }, - { - "depth": 1, - "gas": 79512, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 244, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x6", - "0x20" - ] - }, - { - "depth": 1, - "gas": 79507, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 245, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 79504, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 246, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0xc0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79501, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 247, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140" - ] - }, - { - "depth": 1, - "gas": 79498, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79497, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79494, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79491, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x80", - "0x140" - ] - }, - { - "depth": 1, - "gas": 79488, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79485, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79482, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 79472, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79469, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 79466, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79463, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 79460, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79457, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 79447, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79444, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 77344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 77341, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77338, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77335, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77332, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 77329, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 77326, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 77321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 77318, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 77315, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 77312, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77309, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77306, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77303, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77300, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 77297, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 77294, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 77291, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77286, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77283, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1" - ] - }, - { - "depth": 1, - "gas": 77280, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 57280, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57278, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57275, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x80" - ] - }, - { - "depth": 1, - "gas": 57272, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 57269, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 57266, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57263, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x0", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57260, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57257, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x20" - ] - }, - { - "depth": 1, - "gas": 57254, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x20", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57251, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x20", - "0x8", - "0x7" - ] - }, - { - "depth": 1, - "gas": 57248, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x20", - "0xf" - ] - }, - { - "depth": 1, - "gas": 57243, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57240, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 57237, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57234, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 57231, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57228, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57225, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57220, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57217, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 57209, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57208, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57205, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 57202, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0xa0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 57199, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57196, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57193, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 57183, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57180, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 57177, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2" - ] - }, - { - "depth": 1, - "gas": 57174, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 57171, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x8" - ] - }, - { - "depth": 1, - "gas": 57168, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x8", - "0x100" - ] - }, - { - "depth": 1, - "gas": 57108, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 57105, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 57005, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57002, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56999, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56996, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56993, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56990, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56987, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56982, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0xffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 56979, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56976, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56973, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56970, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 56967, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56964, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56961, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56952, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x10000000000000000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 56947, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1", - "0x20000000000000000" - ] - }, - { - "depth": 1, - "gas": 56944, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001" - ] - }, - { - "depth": 1, - "gas": 56941, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2", - "0x20000000000000001", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56841, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x2" - ] - }, - { - "depth": 1, - "gas": 56839, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xa0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 56836, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 56833, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xa0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 56830, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 56827, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 56824, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x8", - "0x8" - ] - }, - { - "depth": 1, - "gas": 56821, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56818, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x20" - ] - }, - { - "depth": 1, - "gas": 56815, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x20", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56812, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x20", - "0x10", - "0x7" - ] - }, - { - "depth": 1, - "gas": 56809, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x20", - "0x17" - ] - }, - { - "depth": 1, - "gas": 56804, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56801, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56798, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56795, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56792, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56789, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56786, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56781, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56778, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 56770, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56769, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56766, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 56763, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 56760, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56757, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56754, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 56744, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56741, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 56738, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3" - ] - }, - { - "depth": 1, - "gas": 56735, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56732, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56729, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x10", - "0x100" - ] - }, - { - "depth": 1, - "gas": 56669, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56666, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56566, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001" - ] - }, - { - "depth": 1, - "gas": 56563, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56551, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56548, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56543, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0xffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56540, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56537, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000000000000000000000000000000", - "0x20000000000000001" - ] - }, - { - "depth": 1, - "gas": 56534, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56531, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 56528, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56525, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56522, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56519, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56516, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56513, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 56508, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20000000000000001", - "0x300000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56505, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001" - ] - }, - { - "depth": 1, - "gas": 56502, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3", - "0x300000000000000020000000000000001", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56402, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x3" - ] - }, - { - "depth": 1, - "gas": 56400, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56397, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 56394, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 56391, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 56388, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 56385, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x10", - "0x8" - ] - }, - { - "depth": 1, - "gas": 56382, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56379, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x20" - ] - }, - { - "depth": 1, - "gas": 56376, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x20", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56373, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x20", - "0x18", - "0x7" - ] - }, - { - "depth": 1, - "gas": 56370, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 56365, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56362, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56359, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56353, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56347, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56342, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56339, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 56331, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56330, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56327, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 56324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0xe0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 56321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56318, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 56315, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 56305, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56302, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 56299, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4" - ] - }, - { - "depth": 1, - "gas": 56296, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56293, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x18" - ] - }, - { - "depth": 1, - "gas": 56290, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x18", - "0x100" - ] - }, - { - "depth": 1, - "gas": 56230, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56227, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 56127, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001" - ] - }, - { - "depth": 1, - "gas": 56124, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56121, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56118, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56115, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56112, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56109, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56104, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56101, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56098, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001" - ] - }, - { - "depth": 1, - "gas": 56095, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56092, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 56089, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56086, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 56083, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 56080, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 56077, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 56074, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 56069, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x300000000000000020000000000000001", - "0x4000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 56066, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x4000000000000000300000000000000020000000000000001" - ] - }, - { - "depth": 1, - "gas": 56063, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4", - "0x4000000000000000300000000000000020000000000000001", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 55963, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x4" - ] - }, - { - "depth": 1, - "gas": 55961, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xe0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 55958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 55955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0xe0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 55952, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x100" - ] - }, - { - "depth": 1, - "gas": 55949, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 55946, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x18", - "0x8" - ] - }, - { - "depth": 1, - "gas": 55943, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 55940, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 55937, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 55934, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20", - "0x20", - "0x20", - "0x7" - ] - }, - { - "depth": 1, - "gas": 55931, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20", - "0x20", - "0x27" - ] - }, - { - "depth": 1, - "gas": 55926, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x140", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55923, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 55920, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55917, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 55914, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55911, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55908, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55903, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55900, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 55892, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55891, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55888, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 55885, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x100", - "0x140" - ] - }, - { - "depth": 1, - "gas": 55882, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55879, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55876, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 55866, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55863, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 55860, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 55857, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 55854, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0" - ] - }, - { - "depth": 1, - "gas": 55851, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 55841, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1" - ] - }, - { - "depth": 1, - "gas": 55838, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 53738, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 53735, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53732, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53729, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53726, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 53723, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 53720, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 53715, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 53712, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 53709, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 53706, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53703, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5" - ] - }, - { - "depth": 1, - "gas": 53700, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53697, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 53694, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 53691, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 53688, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 53685, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x1", - "0x5" - ] - }, - { - "depth": 1, - "gas": 53680, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 53677, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5" - ] - }, - { - "depth": 1, - "gas": 53674, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5", - "0x5", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33674, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 33672, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33669, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x100" - ] - }, - { - "depth": 1, - "gas": 33666, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x100", - "0x20" - ] - }, - { - "depth": 1, - "gas": 33663, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x120" - ] - }, - { - "depth": 1, - "gas": 33660, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33657, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x0", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33654, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33651, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x20" - ] - }, - { - "depth": 1, - "gas": 33648, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x20", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33645, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x20", - "0x8", - "0x7" - ] - }, - { - "depth": 1, - "gas": 33642, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x20", - "0xf" - ] - }, - { - "depth": 1, - "gas": 33637, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33634, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33631, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33628, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x0", - "0x140", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33625, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33622, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33619, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33614, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33611, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 33603, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33602, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33599, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x120" - ] - }, - { - "depth": 1, - "gas": 33596, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x120", - "0x140" - ] - }, - { - "depth": 1, - "gas": 33593, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33590, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33587, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 33577, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33574, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x120" - ] - }, - { - "depth": 1, - "gas": 33571, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6" - ] - }, - { - "depth": 1, - "gas": 33568, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33565, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33562, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x8", - "0x100" - ] - }, - { - "depth": 1, - "gas": 33502, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 33499, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33399, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5" - ] - }, - { - "depth": 1, - "gas": 33396, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 33393, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33390, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 33384, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 33381, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 33376, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0xffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 33373, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 33370, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10000000000000000", - "0x5" - ] - }, - { - "depth": 1, - "gas": 33367, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 33364, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6" - ] - }, - { - "depth": 1, - "gas": 33361, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33358, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33355, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 33352, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 33349, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 33346, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x10000000000000000", - "0x6" - ] - }, - { - "depth": 1, - "gas": 33341, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x5", - "0x60000000000000000" - ] - }, - { - "depth": 1, - "gas": 33338, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005" - ] - }, - { - "depth": 1, - "gas": 33335, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6", - "0x60000000000000005", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33235, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x6" - ] - }, - { - "depth": 1, - "gas": 33233, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33230, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x120" - ] - }, - { - "depth": 1, - "gas": 33227, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x120", - "0x20" - ] - }, - { - "depth": 1, - "gas": 33224, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 33221, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33218, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x8", - "0x8" - ] - }, - { - "depth": 1, - "gas": 33215, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33212, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x20" - ] - }, - { - "depth": 1, - "gas": 33209, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x20", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33206, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x20", - "0x10", - "0x7" - ] - }, - { - "depth": 1, - "gas": 33203, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x20", - "0x17" - ] - }, - { - "depth": 1, - "gas": 33198, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33195, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33192, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33189, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33186, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33183, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33180, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33175, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33172, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 33164, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33163, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33160, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x140" - ] - }, - { - "depth": 1, - "gas": 33157, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 33154, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33151, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 33148, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x1", - "0x143" - ] - }, - { - "depth": 1, - "gas": 33138, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33137, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33134, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33131, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 33128, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x0", - "0x176" - ] - }, - { - "depth": 1, - "gas": 33118, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 330, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33115, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 331, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 33112, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 332, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10" - ] - }, - { - "depth": 1, - "gas": 33109, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 335, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x10", - "0x100" - ] - }, - { - "depth": 1, - "gas": 33049, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 336, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 33046, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 337, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x100000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32946, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 338, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x100000000000000000000000000000000", - "0x60000000000000005" - ] - }, - { - "depth": 1, - "gas": 32943, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 339, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 32940, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 341, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32937, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 343, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32934, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 345, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32931, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 346, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 32928, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 347, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 32923, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 348, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0xffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 32920, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 349, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 32917, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 350, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005" - ] - }, - { - "depth": 1, - "gas": 32914, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 351, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x60000000000000005", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32814, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 352, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10" - ] - }, - { - "depth": 1, - "gas": 32811, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 354, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x10", - "0x8" - ] - }, - { - "depth": 1, - "gas": 32808, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 355, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32805, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 357, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x20" - ] - }, - { - "depth": 1, - "gas": 32802, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 358, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x20", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32799, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 360, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x20", - "0x18", - "0x7" - ] - }, - { - "depth": 1, - "gas": 32796, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 361, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 32791, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 362, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32788, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 363, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32785, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 364, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32782, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 365, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32779, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 366, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32776, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 368, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32773, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 369, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 370, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32765, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 373, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x143" - ] - }, - { - "depth": 1, - "gas": 32757, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32756, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32753, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32750, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32747, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x0", - "0x176" - ] - }, - { - "depth": 1, - "gas": 32737, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 330, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32734, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 331, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32731, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 332, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32728, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "EXP", - "pc": 335, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x18", - "0x100" - ] - }, - { - "depth": 1, - "gas": 32668, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 336, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 32665, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SLOAD", - "pc": 337, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1000000000000000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32565, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 338, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1000000000000000000000000000000000000000000000000", - "0x60000000000000005" - ] - }, - { - "depth": 1, - "gas": 32562, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 339, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 32559, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 341, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32556, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 343, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32553, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SHL", - "pc": 345, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32550, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 346, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 32547, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 347, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 32542, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "NOT", - "pc": 348, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 32539, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "AND", - "pc": 349, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 32536, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 350, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x60000000000000005" - ] - }, - { - "depth": 1, - "gas": 32533, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SSTORE", - "pc": 351, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x60000000000000005", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 352, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18" - ] - }, - { - "depth": 1, - "gas": 32430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 354, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x18", - "0x8" - ] - }, - { - "depth": 1, - "gas": 32427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 355, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 32424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 357, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 32421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 358, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 32418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 360, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x20", - "0x20", - "0x7" - ] - }, - { - "depth": 1, - "gas": 32415, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DIV", - "pc": 361, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x20", - "0x27" - ] - }, - { - "depth": 1, - "gas": 32410, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 362, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x140", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32407, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP4", - "pc": 363, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564" - ] - }, - { - "depth": 1, - "gas": 32404, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 364, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32401, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 365, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x1", - "0x140", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32398, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 366, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32395, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SUB", - "pc": 368, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32392, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MUL", - "pc": 369, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 370, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32384, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 373, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 32376, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32366, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x1", - "0x176" - ] - }, - { - "depth": 1, - "gas": 32356, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 374, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32355, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 375, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32353, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 376, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32352, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 377, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 378, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP3", - "pc": 381, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184" - ] - }, - { - "depth": 1, - "gas": 32344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP2", - "pc": 382, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32341, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 383, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32339, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 384, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32336, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 387, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x188" - ] - }, - { - "depth": 1, - "gas": 32328, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 392, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32327, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 393, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32326, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 394, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32323, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 395, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32320, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "GT", - "pc": 396, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32317, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ISZERO", - "pc": 397, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32314, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH2", - "pc": 398, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32311, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPI", - "pc": 401, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x184" - ] - }, - { - "depth": 1, - "gas": 32301, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 388, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32300, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 389, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32298, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 390, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32295, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 391, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184" - ] - }, - { - "depth": 1, - "gas": 32287, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 388, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32286, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 389, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 32284, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "SWAP1", - "pc": 390, - "stack": [ - "0x80", - "0x74", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 32281, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMP", - "pc": 391, - "stack": [ - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x74" - ] - }, - { - "depth": 1, - "gas": 32273, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "JUMPDEST", - "pc": 116, - "stack": [ - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 32272, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "POP", - "pc": 117, - "stack": [ - "0x80", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 32270, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 118, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 32267, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 120, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32264, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MLOAD", - "pc": 121, - "stack": [ - "0x80", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32261, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 122, - "stack": [ - "0x80", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32258, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP2", - "pc": 124, - "stack": [ - "0x80", - "0x40", - "0x140", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 32255, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "ADD", - "pc": 125, - "stack": [ - "0x80", - "0x40", - "0x140", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32252, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 126, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x200" - ] - }, - { - "depth": 1, - "gas": 32249, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "MSTORE", - "pc": 127, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x200", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32246, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "PUSH1", - "pc": 128, - "stack": [ - "0x80", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32243, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP1", - "pc": 130, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32240, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "op": "DUP3", - "pc": 131, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32237, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 132, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32231, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 133, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32228, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 135, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 32225, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 136, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x20", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32222, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 137, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x160" - ] - }, - { - "depth": 1, - "gas": 32219, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 138, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x160", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32216, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 139, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0", - "0x160" - ] - }, - { - "depth": 1, - "gas": 32210, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH8", - "pc": 140, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32207, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 149, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 32204, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 150, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 32201, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 151, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32198, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 152, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x180" - ] - }, - { - "depth": 1, - "gas": 32195, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 153, - "stack": [ - "0x80", - "0x180", - "0x140", - "0x0", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 32192, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 154, - "stack": [ - "0x80", - "0x180", - "0x140", - "0xde0b6b3a7640000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32189, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 155, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xde0b6b3a7640000", - "0x180" - ] - }, - { - "depth": 1, - "gas": 32183, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ], - "op": "PUSH1", - "pc": 156, - "stack": [ - "0x80", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32180, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ], - "op": "DUP2", - "pc": 158, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x60" - ] - }, - { - "depth": 1, - "gas": 32177, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ], - "op": "ADD", - "pc": 159, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x60", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32174, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ], - "op": "DUP3", - "pc": 160, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 32171, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ], - "op": "SWAP1", - "pc": 161, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1a0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32168, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 162, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 32162, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 163, - "stack": [ - "0x80", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32159, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 165, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x80" - ] - }, - { - "depth": 1, - "gas": 32156, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 166, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x80", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32153, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 167, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 32150, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 168, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1c0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32147, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 169, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 32141, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 170, - "stack": [ - "0x80", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32138, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 172, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 32135, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 173, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xa0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32132, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 174, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 32129, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 175, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1e0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32126, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 176, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 32120, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 177, - "stack": [ - "0x80", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 32117, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 178, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 32017, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 179, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32014, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 181, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32011, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 182, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 32008, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 183, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 32005, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 184, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31905, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 185, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 31902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 186, - "stack": [ - "0x80", - "0x1", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31899, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 187, - "stack": [ - "0x80", - "0x1", - "0x140", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31896, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 188, - "stack": [ - "0x80", - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31893, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 189, - "stack": [ - "0x80", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 31890, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 192, - "stack": [ - "0x80", - "0x140", - "0x1", - "0xdb" - ] - }, - { - "depth": 1, - "gas": 31887, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 193, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x1" - ] - }, - { - "depth": 1, - "gas": 31884, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 195, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 31879, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 196, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2" - ] - }, - { - "depth": 1, - "gas": 31876, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 198, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31873, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 199, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31870, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 200, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31867, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 202, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 31864, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 205, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0", - "0x20", - "0x1c1" - ] - }, - { - "depth": 1, - "gas": 31861, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 206, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0", - "0x20", - "0x1c1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31855, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 207, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31852, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 208, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31849, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 209, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 31846, - "gasCost": 3, - "memory": [ - "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 210, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31843, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 211, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 31840, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 212, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 31837, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 213, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31834, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 215, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6" - ] - }, - { - "depth": 1, - "gas": 31831, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 218, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6", - "0xe3" - ] - }, - { - "depth": 1, - "gas": 31823, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 227, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6" - ] - }, - { - "depth": 1, - "gas": 31822, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 228, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6" - ] - }, - { - "depth": 1, - "gas": 31819, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 230, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6", - "0x2" - ] - }, - { - "depth": 1, - "gas": 31816, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 231, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6", - "0x2", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 31813, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 232, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 31810, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 233, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31807, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 234, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 31804, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 235, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31801, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 236, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x6" - ] - }, - { - "depth": 1, - "gas": 31798, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 237, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31795, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 240, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140", - "0x0", - "0x178" - ] - }, - { - "depth": 1, - "gas": 31785, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 241, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x6", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31782, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 242, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6" - ] - }, - { - "depth": 1, - "gas": 31779, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 244, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x6", - "0x20" - ] - }, - { - "depth": 1, - "gas": 31774, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 245, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 31771, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 246, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 247, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200" - ] - }, - { - "depth": 1, - "gas": 31765, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31764, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31761, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31758, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x140", - "0x200" - ] - }, - { - "depth": 1, - "gas": 31755, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 31752, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31749, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 31739, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31736, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 31733, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31730, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 31727, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 31724, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 31714, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1" - ] - }, - { - "depth": 1, - "gas": 31711, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29611, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29608, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29605, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29602, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29599, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 29596, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29593, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29588, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29585, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 29582, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29579, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29576, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29573, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29570, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29567, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 29564, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29561, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29558, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29553, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29550, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29547, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29447, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29445, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29442, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x140" - ] - }, - { - "depth": 1, - "gas": 29439, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 29436, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x160" - ] - }, - { - "depth": 1, - "gas": 29433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x0", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x20" - ] - }, - { - "depth": 1, - "gas": 29421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x20", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x20", - "0x8", - "0x7" - ] - }, - { - "depth": 1, - "gas": 29415, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x20", - "0xf" - ] - }, - { - "depth": 1, - "gas": 29410, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29407, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29404, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29401, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29398, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29395, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29392, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29384, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 29376, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x160" - ] - }, - { - "depth": 1, - "gas": 29369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x160", - "0x200" - ] - }, - { - "depth": 1, - "gas": 29366, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29363, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29360, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 29350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x160" - ] - }, - { - "depth": 1, - "gas": 29344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29341, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29338, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29335, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x8", - "0x100" - ] - }, - { - "depth": 1, - "gas": 29275, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29272, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29172, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29169, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29166, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29163, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29160, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 29157, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29154, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29149, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 29146, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29143, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29140, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29137, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29134, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29131, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 29128, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 29125, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 29122, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 29119, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29114, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29111, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29108, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 29008, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 29006, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x160", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 29003, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x160" - ] - }, - { - "depth": 1, - "gas": 29000, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x160", - "0x20" - ] - }, - { - "depth": 1, - "gas": 28997, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x180" - ] - }, - { - "depth": 1, - "gas": 28994, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 28991, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x8", - "0x8" - ] - }, - { - "depth": 1, - "gas": 28988, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28985, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x20" - ] - }, - { - "depth": 1, - "gas": 28982, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x20", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28979, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x20", - "0x10", - "0x7" - ] - }, - { - "depth": 1, - "gas": 28976, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x20", - "0x17" - ] - }, - { - "depth": 1, - "gas": 28971, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28968, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 28965, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28962, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 28959, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28956, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28953, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28948, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28945, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 28937, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28936, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28933, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x180" - ] - }, - { - "depth": 1, - "gas": 28930, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x180", - "0x200" - ] - }, - { - "depth": 1, - "gas": 28927, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28924, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28921, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 28911, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28908, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x180" - ] - }, - { - "depth": 1, - "gas": 28905, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 28902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 28899, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10" - ] - }, - { - "depth": 1, - "gas": 28896, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x10", - "0x100" - ] - }, - { - "depth": 1, - "gas": 28836, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28833, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 28733, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28730, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28727, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28724, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28721, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 28718, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 28715, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 28710, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0xffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28707, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 28704, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x100000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 28701, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28698, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 28695, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28692, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 28689, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 28686, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 28683, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 28680, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 28675, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0", - "0xde0b6b3a764000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28672, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 28669, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8669, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0xde0b6b3a7640000" - ] - }, - { - "depth": 1, - "gas": 8667, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x180", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 8664, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x180" - ] - }, - { - "depth": 1, - "gas": 8661, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x180", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8658, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 8655, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 8652, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x10", - "0x8" - ] - }, - { - "depth": 1, - "gas": 8649, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8646, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8643, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x20", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8640, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x20", - "0x18", - "0x7" - ] - }, - { - "depth": 1, - "gas": 8637, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 8632, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8629, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8626, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8623, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8620, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8617, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8614, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8609, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8606, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 8598, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8597, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8594, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 8591, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x1a0", - "0x200" - ] - }, - { - "depth": 1, - "gas": 8588, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8585, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8582, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 8572, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8569, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 8566, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8563, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8557, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x18", - "0x100" - ] - }, - { - "depth": 1, - "gas": 8497, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8494, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8394, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8391, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8388, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8385, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8382, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 8379, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 8376, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 8371, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8368, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 8365, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8362, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8359, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8353, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 8347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 8344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 8341, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8336, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8333, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xde0b6b3a764000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 8330, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8230, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8228, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1a0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8225, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 8222, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x1a0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8219, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 8216, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 8213, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x18", - "0x8" - ] - }, - { - "depth": 1, - "gas": 8210, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8207, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8204, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 8201, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20", - "0x20", - "0x20", - "0x7" - ] - }, - { - "depth": 1, - "gas": 8198, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20", - "0x20", - "0x27" - ] - }, - { - "depth": 1, - "gas": 8193, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x200", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8190, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 8187, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8184, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 8181, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8178, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8175, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8170, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8167, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 8159, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8158, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8155, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 8152, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x1c0", - "0x200" - ] - }, - { - "depth": 1, - "gas": 8149, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8146, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8143, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 8133, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8130, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 8127, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8124, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 8121, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 8118, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 8108, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1" - ] - }, - { - "depth": 1, - "gas": 8105, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 6005, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 6002, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5999, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5996, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5993, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 5990, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5987, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5982, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5979, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 5976, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5973, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5970, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5967, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5964, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5961, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 5958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5952, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5947, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5944, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5941, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5841, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5839, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1c0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5836, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 5833, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x1c0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 5830, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 5827, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5824, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x0", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5821, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5818, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x20" - ] - }, - { - "depth": 1, - "gas": 5815, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x20", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5812, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x20", - "0x8", - "0x7" - ] - }, - { - "depth": 1, - "gas": 5809, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x20", - "0xf" - ] - }, - { - "depth": 1, - "gas": 5804, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5801, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5798, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5795, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5792, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5789, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5786, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5781, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5778, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 5770, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5769, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5766, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 5763, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x1e0", - "0x200" - ] - }, - { - "depth": 1, - "gas": 5760, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5757, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5754, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 5744, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 258, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5741, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 259, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 5738, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 260, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5735, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 261, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5732, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 262, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5729, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 265, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x8", - "0x100" - ] - }, - { - "depth": 1, - "gas": 5669, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 266, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5666, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 267, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5566, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 268, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5563, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 269, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 271, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 273, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 275, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 5551, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 276, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5548, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5543, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 278, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000" - ] - }, - { - "depth": 1, - "gas": 5540, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 279, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5537, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 280, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5534, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5531, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 282, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5528, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 284, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5525, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 286, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5522, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 288, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 5519, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 289, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5516, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 290, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5513, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 291, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x10000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5508, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 292, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5505, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 293, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5502, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 294, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5402, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 295, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5400, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 296, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1e0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5397, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 297, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 5394, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 299, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x1e0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 5391, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 300, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x8", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x200" - ] - }, - { - "depth": 1, - "gas": 5388, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 301, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5385, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 303, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x8", - "0x8" - ] - }, - { - "depth": 1, - "gas": 5382, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 304, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5379, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 306, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x20" - ] - }, - { - "depth": 1, - "gas": 5376, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 307, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x20", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5373, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x20", - "0x10", - "0x7" - ] - }, - { - "depth": 1, - "gas": 5370, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 310, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x20", - "0x17" - ] - }, - { - "depth": 1, - "gas": 5365, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 311, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5362, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 312, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5359, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 313, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 314, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5353, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 315, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 317, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5347, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 318, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5342, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 319, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5339, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 322, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0xf9" - ] - }, - { - "depth": 1, - "gas": 5331, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 249, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5330, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 250, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5327, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 251, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x200" - ] - }, - { - "depth": 1, - "gas": 5324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 252, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x200", - "0x200" - ] - }, - { - "depth": 1, - "gas": 5321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 253, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5318, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 254, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5315, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 257, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x1", - "0x143" - ] - }, - { - "depth": 1, - "gas": 5305, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5304, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5301, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5298, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5295, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0", - "0x176" - ] - }, - { - "depth": 1, - "gas": 5285, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 330, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5282, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 331, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5279, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 332, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10" - ] - }, - { - "depth": 1, - "gas": 5276, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 335, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x10", - "0x100" - ] - }, - { - "depth": 1, - "gas": 5216, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 336, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 5213, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 337, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x100000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 5113, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 338, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x100000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5110, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 339, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 5107, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 341, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5104, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 343, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 5101, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 345, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 5098, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 346, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 5095, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 347, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5090, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 348, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0xffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 5087, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 349, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 5084, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 350, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 5081, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 351, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4981, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 352, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10" - ] - }, - { - "depth": 1, - "gas": 4978, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 354, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x10", - "0x8" - ] - }, - { - "depth": 1, - "gas": 4975, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 355, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4972, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 357, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x20" - ] - }, - { - "depth": 1, - "gas": 4969, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 358, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x20", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4966, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 360, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x20", - "0x18", - "0x7" - ] - }, - { - "depth": 1, - "gas": 4963, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 361, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 4958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 362, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 363, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4952, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 364, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4949, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 365, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4946, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 366, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4943, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 368, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4940, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 369, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4935, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 370, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4932, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 373, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x143" - ] - }, - { - "depth": 1, - "gas": 4924, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4923, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4920, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4917, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4914, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0", - "0x176" - ] - }, - { - "depth": 1, - "gas": 4904, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 330, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4901, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 331, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4898, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 332, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4895, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EXP", - "pc": 335, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x18", - "0x100" - ] - }, - { - "depth": 1, - "gas": 4835, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 336, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 4832, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 337, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1000000000000000000000000000000000000000000000000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4732, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 338, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4729, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 339, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 4726, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 341, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4723, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 343, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4720, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 345, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 4717, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 346, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 4714, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 347, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 4709, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 348, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 4706, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 349, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 4703, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 350, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4700, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 351, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4600, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 352, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18" - ] - }, - { - "depth": 1, - "gas": 4597, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 354, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x18", - "0x8" - ] - }, - { - "depth": 1, - "gas": 4594, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 355, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20" - ] - }, - { - "depth": 1, - "gas": 4591, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 357, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 4588, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 358, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 4585, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 360, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x20", - "0x20", - "0x7" - ] - }, - { - "depth": 1, - "gas": 4582, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DIV", - "pc": 361, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x20", - "0x27" - ] - }, - { - "depth": 1, - "gas": 4577, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 362, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x200", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4574, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 363, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566" - ] - }, - { - "depth": 1, - "gas": 4571, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 364, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4568, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 365, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x1", - "0x200", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4565, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 366, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4562, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 368, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4559, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 369, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 370, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4551, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 373, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x143" - ] - }, - { - "depth": 1, - "gas": 4543, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 323, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4542, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 324, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4539, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 325, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4536, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 326, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4533, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 329, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0", - "0x1", - "0x176" - ] - }, - { - "depth": 1, - "gas": 4523, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 374, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4522, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 375, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4520, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 376, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200" - ] - }, - { - "depth": 1, - "gas": 4519, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 377, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200" - ] - }, - { - "depth": 1, - "gas": 4517, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 378, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4514, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 381, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x184" - ] - }, - { - "depth": 1, - "gas": 4511, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 382, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x200", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4508, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 383, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x200" - ] - }, - { - "depth": 1, - "gas": 4506, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 384, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4503, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 387, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x188" - ] - }, - { - "depth": 1, - "gas": 4495, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 392, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4494, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 393, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4493, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 394, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4490, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 395, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4487, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 396, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4484, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 397, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4481, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 398, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1" - ] - }, - { - "depth": 1, - "gas": 4478, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 401, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x1", - "0x184" - ] - }, - { - "depth": 1, - "gas": 4468, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 388, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4467, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 389, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4465, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 390, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x184", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4462, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 391, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567", - "0x184" - ] - }, - { - "depth": 1, - "gas": 4454, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 388, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4453, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 389, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567" - ] - }, - { - "depth": 1, - "gas": 4451, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 390, - "stack": [ - "0x80", - "0x140", - "0xdb", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 4448, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 391, - "stack": [ - "0x80", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565", - "0xdb" - ] - }, - { - "depth": 1, - "gas": 4440, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 219, - "stack": [ - "0x80", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 4439, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 220, - "stack": [ - "0x80", - "0x140", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e565" - ] - }, - { - "depth": 1, - "gas": 4437, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 221, - "stack": [ - "0x80", - "0x140" - ] - }, - { - "depth": 1, - "gas": 4435, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 222, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 4433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 223, - "stack": [] - }, - { - "depth": 1, - "gas": 4430, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 226, - "stack": [ - "0x19d" - ] - }, - { - "depth": 1, - "gas": 4422, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 413, - "stack": [] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 414, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 416, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 417, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 420, - "stack": [ - "0x16", - "0x16", - "0x1ab" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 422, - "stack": [ - "0x16", - "0x16", - "0x1ab", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 423, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "RETURN", - "pc": 425, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0", - "tx_id": "0x9346009202c220251c6a2009f78d2d357a1a871ce9f9a94de497a77c90211932" -} \ No newline at end of file diff --git a/tests/data/trace_Enum.json b/tests/data/trace_Enum.json deleted file mode 100644 index 5d92327b..00000000 --- a/tests/data/trace_Enum.json +++ /dev/null @@ -1,674 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x21b87", - "returnValue": "0x6080604052348015600f57600080fd5b5060043610603c5760003560e01c806326121ff014604157806332e43a11146047578063e2179b8e146049575b600080fd5b6047604f565b005b60476081565b600180805b602091828204019190066101000a81548160ff02191690836002811115607a57607a6096565b0217905550565b6000805460ff19166003178155600160026054565b634e487b7160e01b600052602160045260246000fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 81347, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 81344, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 81341, - "gasCost": 12, - "memory": [], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 81329, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 81327, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 81324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 81321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 81318, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 81308, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 81307, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 81305, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 81302, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 20, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 81299, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 21, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79199, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79196, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 24, - "stack": [ - "0x0", - "0x0", - "0xff" - ] - }, - { - "depth": 1, - "gas": 79193, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 25, - "stack": [ - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 79190, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 26, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79187, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 28, - "stack": [ - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79184, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 29, - "stack": [ - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 79181, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 30, - "stack": [ - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79178, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 31, - "stack": [ - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 79175, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 32, - "stack": [ - "0x0", - "0x1", - "0x1" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "depth": 1, - "gas": 79172, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 33, - "stack": [ - "0x1", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 59172, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 34, - "stack": [ - "0x1" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "depth": 1, - "gas": 59169, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 35, - "stack": [ - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 57069, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH3", - "pc": 36, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57066, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH3", - "pc": 40, - "stack": [ - "0x1", - "0x0", - "0x20000" - ] - }, - { - "depth": 1, - "gas": 57063, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 44, - "stack": [ - "0x1", - "0x0", - "0x20000", - "0xff00ff" - ] - }, - { - "depth": 1, - "gas": 57060, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 45, - "stack": [ - "0x1", - "0x0", - "0x20000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00" - ] - }, - { - "depth": 1, - "gas": 57057, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 46, - "stack": [ - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00", - "0x20000" - ] - }, - { - "depth": 1, - "gas": 57054, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 47, - "stack": [ - "0x1", - "0x20000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57051, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 48, - "stack": [ - "0x1", - "0x20000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 57048, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 49, - "stack": [ - "0x1", - "0x20000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "depth": 1, - "gas": 57045, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 50, - "stack": [ - "0x20000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 37045, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 51, - "stack": [] - }, - { - "depth": 1, - "gas": 37042, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 53, - "stack": [ - "0xb9" - ] - }, - { - "depth": 1, - "gas": 37039, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 54, - "stack": [ - "0xb9", - "0xb9" - ] - }, - { - "depth": 1, - "gas": 37036, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 57, - "stack": [ - "0xb9", - "0xb9", - "0x40" - ] - }, - { - "depth": 1, - "gas": 37033, - "gasCost": 30, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 59, - "stack": [ - "0xb9", - "0xb9", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 37003, - "gasCost": 3, - "memory": [ - "6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063", - "26121ff014604157806332e43a11146047578063e2179b8e146049575b600080", - "fd5b6047604f565b005b60476081565b600180805b6020918282040191900661", - "01000a81548160ff02191690836002811115607a57607a6096565b0217905550", - "565b6000805460ff19166003178155600160026054565b634e487b7160e01b60", - "0052602160045260246000fdfea164736f6c6343000815000a00000000000000" - ], - "op": "PUSH1", - "pc": 60, - "stack": [ - "0xb9" - ] - }, - { - "depth": 1, - "gas": 37000, - "gasCost": 0, - "memory": [ - "6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063", - "26121ff014604157806332e43a11146047578063e2179b8e146049575b600080", - "fd5b6047604f565b005b60476081565b600180805b6020918282040191900661", - "01000a81548160ff02191690836002811115607a57607a6096565b0217905550", - "565b6000805460ff19166003178155600160026054565b634e487b7160e01b60", - "0052602160045260246000fdfea164736f6c6343000815000a00000000000000" - ], - "op": "RETURN", - "pc": 62, - "stack": [ - "0xb9", - "0x0" - ] - } - ] - }, - "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "tx_id": "0xcf4b35c2e24bf9ff3a4a767e4994dd0e4347ef17abd1fda468e85b254a6f4f8e" -} \ No newline at end of file diff --git a/tests/data/trace_NestedMapping.json b/tests/data/trace_NestedMapping.json deleted file mode 100644 index 5c4f2eab..00000000 --- a/tests/data/trace_NestedMapping.json +++ /dev/null @@ -1,3087 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x2ff6c", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806332e43a111461004657806398c3a6c114610048578063d48092f71461005b575b600080fd5b005b61004661005636600461011b565b61006e565b61004661006936600461011b565b6100e0565b6001196000602a6064841561008b5750600a9250600c9150829050815b600093840b8452600160209081526040808620600f9590950b8652938152838520600119905560ff9092168452600282528284206fffffffffffffffffffffffffffffffff909116845290529020602a905550565b600a60011982156100f25750600c9050805b600091820b8252600160209081526040808420600f9390930b845291905290206103e719905550565b60006020828403121561012d57600080fd5b8135801515811461013d57600080fd5b939250505056fea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 134404, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 134401, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 134398, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 134386, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 134383, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 7, - "stack": [ - "0x3" - ] - }, - { - "depth": 1, - "gas": 134380, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 8, - "stack": [ - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 132280, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 9, - "stack": [ - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132277, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 11, - "stack": [ - "0x3", - "0x0", - "0xff" - ] - }, - { - "depth": 1, - "gas": 132274, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 12, - "stack": [ - "0x3", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" - ] - }, - { - "depth": 1, - "gas": 132271, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 13, - "stack": [ - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 132268, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 15, - "stack": [ - "0x3", - "0x0", - "0xfe" - ] - }, - { - "depth": 1, - "gas": 132265, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 16, - "stack": [ - "0x3", - "0xfe" - ] - }, - { - "depth": 1, - "gas": 132262, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 17, - "stack": [ - "0xfe", - "0x3" - ] - }, - { - "depth": 1, - "gas": 112262, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 112260, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 19, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 112257, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 20, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112254, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 21, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112251, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 24, - "stack": [ - "0x0", - "0x1", - "0x1d" - ] - }, - { - "depth": 1, - "gas": 112241, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 29, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 112240, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 30, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 112238, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 31, - "stack": [] - }, - { - "depth": 1, - "gas": 112235, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 33, - "stack": [ - "0x40" - ] - }, - { - "depth": 1, - "gas": 112232, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 34, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 112229, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODESIZE", - "pc": 37, - "stack": [ - "0x80", - "0x24b" - ] - }, - { - "depth": 1, - "gas": 112227, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 38, - "stack": [ - "0x80", - "0x24b", - "0x26b" - ] - }, - { - "depth": 1, - "gas": 112224, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 39, - "stack": [ - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112221, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 40, - "stack": [ - "0x80", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112218, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 43, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x24b" - ] - }, - { - "depth": 1, - "gas": 112215, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 44, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x24b", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112203, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 45, - "stack": [ - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112200, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 46, - "stack": [ - "0x80", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112197, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 47, - "stack": [ - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 112194, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 49, - "stack": [ - "0x80", - "0xa0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 112191, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 50, - "stack": [ - "0x80", - "0xa0", - "0x40", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 112188, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 51, - "stack": [ - "0x80", - "0xa0", - "0xa0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 112185, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 52, - "stack": [ - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 112182, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 55, - "stack": [ - "0x80", - "0xa0", - "0x3c" - ] - }, - { - "depth": 1, - "gas": 112179, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 56, - "stack": [ - "0x3c", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112176, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 59, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0xc2" - ] - }, - { - "depth": 1, - "gas": 112168, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 194, - "stack": [ - "0x3c", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112167, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 195, - "stack": [ - "0x3c", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112164, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 197, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112161, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 199, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112158, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 200, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112155, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 201, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 112152, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLT", - "pc": 202, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112149, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 203, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112146, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 204, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112143, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 207, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x1", - "0xd4" - ] - }, - { - "depth": 1, - "gas": 112133, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 212, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112132, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 213, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112129, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 214, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112126, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 215, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112123, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 216, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112120, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 217, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112117, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 218, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112114, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EQ", - "pc": 219, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112111, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 220, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 112108, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 223, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1", - "0xe4" - ] - }, - { - "depth": 1, - "gas": 112098, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 228, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112097, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP4", - "pc": 229, - "stack": [ - "0x3c", - "0xa0", - "0x80", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112094, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP3", - "pc": 230, - "stack": [ - "0x0", - "0xa0", - "0x80", - "0x0", - "0x3c" - ] - }, - { - "depth": 1, - "gas": 112091, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 231, - "stack": [ - "0x0", - "0x3c", - "0x80", - "0x0", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 112089, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 232, - "stack": [ - "0x0", - "0x3c", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112087, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 233, - "stack": [ - "0x0", - "0x3c", - "0x80" - ] - }, - { - "depth": 1, - "gas": 112085, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 234, - "stack": [ - "0x0", - "0x3c" - ] - }, - { - "depth": 1, - "gas": 112077, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 60, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 112076, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADDRESS", - "pc": 61, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 112074, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 62, - "stack": [ - "0x0", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9" - ] - }, - { - "depth": 1, - "gas": 112071, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 64, - "stack": [ - "0x0", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112068, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 65, - "stack": [ - "0x0", - "0x0", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9" - ] - }, - { - "depth": 1, - "gas": 112065, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 66, - "stack": [ - "0x0", - "0x0", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112062, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 67, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112059, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 69, - "stack": [ - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112056, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 70, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 112053, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 71, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112050, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 72, - "stack": [ - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 112047, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 74, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 112044, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 75, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 112041, - "gasCost": 42, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 76, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 111999, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH20", - "pc": 77, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7" - ] - }, - { - "depth": 1, - "gas": 111996, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 98, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "0x1111111254eeb25477b68fb85ed929f73a960582" - ] - }, - { - "depth": 1, - "gas": 111993, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 99, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "0x1111111254eeb25477b68fb85ed929f73a960582", - "0x0" - ] - }, - { - "depth": 1, - "gas": 111990, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 100, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7" - ] - }, - { - "depth": 1, - "gas": 111987, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 101, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "0x40" - ] - }, - { - "depth": 1, - "gas": 111984, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 102, - "stack": [ - "0x0", - "0x0", - "0x40", - "0x6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "0x20" - ] - }, - { - "depth": 1, - "gas": 111981, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 103, - "stack": [ - "0x0", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 111978, - "gasCost": 42, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 104, - "stack": [ - "0x0", - "0x0", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 111936, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 105, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796" - ] - }, - { - "depth": 1, - "gas": 111933, - "gasCost": 2100, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 106, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796" - ] - }, - { - "depth": 1, - "gas": 109833, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 107, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0" - ] - }, - { - "depth": 1, - "gas": 109830, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 109, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 109827, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 111, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 109824, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 113, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 109821, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 114, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 109818, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 115, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 109815, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 116, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 109812, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH4", - "pc": 117, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0" - ] - }, - { - "depth": 1, - "gas": 109809, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 122, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x0", - "0x5f5e100" - ] - }, - { - "depth": 1, - "gas": 109806, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 123, - "stack": [ - "0x0", - "0x0", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796", - "0x5f5e100" - ] - }, - { - "depth": 1, - "gas": 109803, - "gasCost": 20000, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 124, - "stack": [ - "0x0", - "0x0", - "0x5f5e100", - "0x50c3ee70f4ae968d6c6c0aab154525a17abbc18f5f4e91ba551ada5fa7b60796" - ] - }, - { - "depth": 1, - "gas": 89803, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 125, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89800, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 126, - "stack": [ - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89797, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 127, - "stack": [ - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 89794, - "gasCost": 10, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 130, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x85" - ] - }, - { - "depth": 1, - "gas": 89784, - "gasCost": 1, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 133, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89783, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 134, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89780, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 136, - "stack": [ - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 89777, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 138, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 89774, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 140, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 89771, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 141, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 89768, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 142, - "stack": [ - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 89765, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 143, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89762, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 145, - "stack": [ - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89759, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 146, - "stack": [ - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89756, - "gasCost": 3, - "memory": [ - "0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 147, - "stack": [ - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89753, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 148, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89750, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 150, - "stack": [ - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 89747, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 151, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89744, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "6fbef2592be3aaa5ed4072279326f0942ecbad6bc3d87576d64c1513520a59a7", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 152, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 89741, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 153, - "stack": [ - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 89738, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 155, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 89735, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 156, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 89732, - "gasCost": 42, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 157, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89690, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADDRESS", - "pc": 158, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5" - ] - }, - { - "depth": 1, - "gas": 89688, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 159, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9" - ] - }, - { - "depth": 1, - "gas": 89685, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 160, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89682, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 161, - "stack": [ - "0x0", - "0x0", - "0x20", - "0x40", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5" - ] - }, - { - "depth": 1, - "gas": 89679, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 162, - "stack": [ - "0x0", - "0x0", - "0x20", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "0x40" - ] - }, - { - "depth": 1, - "gas": 89676, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 163, - "stack": [ - "0x0", - "0x0", - "0x40", - "0xad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "0x20" - ] - }, - { - "depth": 1, - "gas": 89673, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 164, - "stack": [ - "0x0", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 89670, - "gasCost": 42, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 165, - "stack": [ - "0x0", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 89628, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 166, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd" - ] - }, - { - "depth": 1, - "gas": 89625, - "gasCost": 2100, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 167, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd" - ] - }, - { - "depth": 1, - "gas": 87525, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 168, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0" - ] - }, - { - "depth": 1, - "gas": 87522, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 170, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 87519, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 172, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 87516, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 174, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 87513, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 175, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 87510, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 176, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 87507, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 177, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 87504, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 178, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0" - ] - }, - { - "depth": 1, - "gas": 87501, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 180, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 87498, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 182, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x5", - "0x1" - ] - }, - { - "depth": 1, - "gas": 87495, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 184, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x5", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 87492, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 185, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0x5", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 87489, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 186, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0x0", - "0xfffffffffffffffffffffffffffffffb" - ] - }, - { - "depth": 1, - "gas": 87486, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 187, - "stack": [ - "0x0", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd", - "0xfffffffffffffffffffffffffffffffb" - ] - }, - { - "depth": 1, - "gas": 87483, - "gasCost": 20000, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 188, - "stack": [ - "0x0", - "0xfffffffffffffffffffffffffffffffb", - "0xe0bdd3ceedec0f0607888598b5d4d681f1e4d116dc05d2d1ef51001a37dbe5dd" - ] - }, - { - "depth": 1, - "gas": 67483, - "gasCost": 2, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 189, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 67481, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 190, - "stack": [] - }, - { - "depth": 1, - "gas": 67478, - "gasCost": 8, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 193, - "stack": [ - "0xeb" - ] - }, - { - "depth": 1, - "gas": 67470, - "gasCost": 1, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 235, - "stack": [] - }, - { - "depth": 1, - "gas": 67469, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 236, - "stack": [] - }, - { - "depth": 1, - "gas": 67466, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 239, - "stack": [ - "0x151" - ] - }, - { - "depth": 1, - "gas": 67463, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 240, - "stack": [ - "0x151", - "0x151" - ] - }, - { - "depth": 1, - "gas": 67460, - "gasCost": 3, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 243, - "stack": [ - "0x151", - "0x151", - "0xfa" - ] - }, - { - "depth": 1, - "gas": 67457, - "gasCost": 54, - "memory": [ - "000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 245, - "stack": [ - "0x151", - "0x151", - "0xfa", - "0x0" - ] - }, - { - "depth": 1, - "gas": 67403, - "gasCost": 3, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806332e43a111461004657806398c3a6c114610048578063d48092f71461005b", - "575b600080fd5b005b61004661005636600461011b565b61006e565b61004661", - "006936600461011b565b6100e0565b6001196000602a6064841561008b575060", - "0a9250600c9150829050815b600093840b845260016020908152604080862060", - "0f9590950b8652938152838520600119905560ff909216845260028252828420", - "6fffffffffffffffffffffffffffffffff909116845290529020602a90555056", - "5b600a60011982156100f25750600c9050805b600091820b8252600160209081", - "526040808420600f9390930b845291905290206103e719905550565b60006020", - "828403121561012d57600080fd5b8135801515811461013d57600080fd5b9392", - "50505056fea164736f6c6343000815000a000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 246, - "stack": [ - "0x151" - ] - }, - { - "depth": 1, - "gas": 67400, - "gasCost": 0, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806332e43a111461004657806398c3a6c114610048578063d48092f71461005b", - "575b600080fd5b005b61004661005636600461011b565b61006e565b61004661", - "006936600461011b565b6100e0565b6001196000602a6064841561008b575060", - "0a9250600c9150829050815b600093840b845260016020908152604080862060", - "0f9590950b8652938152838520600119905560ff909216845260028252828420", - "6fffffffffffffffffffffffffffffffff909116845290529020602a90555056", - "5b600a60011982156100f25750600c9050805b600091820b8252600160209081", - "526040808420600f9390930b845291905290206103e719905550565b60006020", - "828403121561012d57600080fd5b8135801515811461013d57600080fd5b9392", - "50505056fea164736f6c6343000815000a000000000000000000000000000000" - ], - "op": "RETURN", - "pc": 248, - "stack": [ - "0x151", - "0x0" - ] - } - ] - }, - "address": "0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9", - "tx_id": "0x83969494c50d82b41a0c186532de193cf88055f2156b22f5a2be566d469a6191" -} \ No newline at end of file diff --git a/tests/data/trace_StaticArray.json b/tests/data/trace_StaticArray.json deleted file mode 100644 index 2d78b253..00000000 --- a/tests/data/trace_StaticArray.json +++ /dev/null @@ -1,1326 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x24a93", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 95213, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 95210, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 95207, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 95195, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 95193, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 95190, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 95187, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 95184, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 10, - "stack": [ - "0x0", - "0x1", - "0xf" - ] - }, - { - "depth": 1, - "gas": 95174, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 15, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 95173, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 95171, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 17, - "stack": [] - }, - { - "depth": 1, - "gas": 95168, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 19, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 95165, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 20, - "stack": [ - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 93065, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 21, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93062, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 23, - "stack": [ - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 93059, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 25, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 93056, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 27, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 93053, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 28, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 93050, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 29, - "stack": [ - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 93047, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 30, - "stack": [ - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 93044, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH9", - "pc": 31, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93041, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 41, - "stack": [ - "0x1", - "0x0", - "0x200000000000000064" - ] - }, - { - "depth": 1, - "gas": 93038, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 42, - "stack": [ - "0x1", - "0x200000000000000064" - ] - }, - { - "depth": 1, - "gas": 93035, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 43, - "stack": [ - "0x1", - "0x200000000000000064", - "0x1" - ] - }, - { - "depth": 1, - "gas": 73035, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 44, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 73032, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 46, - "stack": [ - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 73029, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 47, - "stack": [ - "0x1", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 70929, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 48, - "stack": [ - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 70926, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 50, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 70923, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 52, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 70920, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 54, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 70917, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 55, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 70914, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 56, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 70911, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 57, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 70908, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 58, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 70905, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 59, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 70902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 60, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 70899, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 61, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 70799, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 62, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 70796, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 64, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 70793, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 65, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 68693, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 66, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68690, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 67, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 68687, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 68, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68684, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 69, - "stack": [ - "0x1", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 68681, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 70, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68678, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 71, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68675, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 72, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 48675, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 73, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 48672, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 75, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 48669, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 76, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x4", - "0x4" - ] - }, - { - "depth": 1, - "gas": 46569, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 77, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46566, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 78, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x4", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46563, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 79, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 80, - "stack": [ - "0x3", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4" - ] - }, - { - "depth": 1, - "gas": 46557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 81, - "stack": [ - "0x3", - "0x4", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 46554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 82, - "stack": [ - "0x3", - "0x4", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 46551, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 83, - "stack": [ - "0x3", - "0x4", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46548, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 84, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x2", - "0x4" - ] - }, - { - "depth": 1, - "gas": 26548, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 85, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 26545, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 87, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x5" - ] - }, - { - "depth": 1, - "gas": 26542, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 88, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x5", - "0x5" - ] - }, - { - "depth": 1, - "gas": 24442, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 89, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24439, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 90, - "stack": [ - "0x3", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 24436, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 91, - "stack": [ - "0x3", - "0x5", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 92, - "stack": [ - "0x3", - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 93, - "stack": [ - "0x3", - "0x0", - "0x5" - ] - }, - { - "depth": 1, - "gas": 24427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 94, - "stack": [ - "0x5", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 24424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 95, - "stack": [ - "0x5", - "0x3" - ] - }, - { - "depth": 1, - "gas": 24421, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 96, - "stack": [ - "0x3", - "0x5" - ] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 97, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 99, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 100, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 102, - "stack": [ - "0x16", - "0x16", - "0x6d" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 104, - "stack": [ - "0x16", - "0x16", - "0x6d", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 105, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "RETURN", - "pc": 107, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0xdc64a140aa3e981100a9beca4e685f962f0cf6c9", - "tx_id": "0x8608c05ff1e54659cfc495dbcf07e0282af4fb9fd3968718c6ba1f430ac69302" -} \ No newline at end of file diff --git a/tests/data/trace_StaticArrayOfDynamicArray.json b/tests/data/trace_StaticArrayOfDynamicArray.json deleted file mode 100644 index 1b6e52a0..00000000 --- a/tests/data/trace_StaticArrayOfDynamicArray.json +++ /dev/null @@ -1,22198 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x73c0f", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e6100eb565b60008054600180820183558280527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563600283040180546001600160801b03929093166010026101000a9182021990921662100000919091021790556040517f47bd583cba710a1c0fe1a3c584804e02f4deeddfcce05e11d14fb2dc4b4099f9916100e1916101f0565b60405180910390a1565b60008001805460018082018355600092835260208320600283040180546001600160801b03929093166010026101000a91820219909216678ac7230489e800009091021790556040517f0ffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0916100e19161020a565b805480835260008281526020808220940193909190825b6001838183011061018757506101af565b82546001600160801b038116885260801c602088015260409096019590910190600201610176565b905490828110156101d0576001600160801b03821686526020909501946001015b828110156101e657608082901c86526020860195505b5093949350505050565b602081526000610203602083018461015f565b9392505050565b60208082526000906080830183820185845b600381101561024a57868403601f19018352610238848361015f565b9350918401916001918201910161021c565b5091969550505050505056fea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 417717, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 417714, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 417711, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 417699, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 417697, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 417694, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 417691, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 417688, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 417678, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 417677, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 417675, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 417672, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 20, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 417669, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 21, - "stack": [ - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 415569, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 22, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 415566, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 23, - "stack": [ - "0x1", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 415563, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 24, - "stack": [ - "0x1", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 415560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 25, - "stack": [ - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 415557, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 26, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 395557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 27, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 395554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 29, - "stack": [ - "0x1", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 395551, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 30, - "stack": [ - "0x1", - "0x0", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 395548, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 31, - "stack": [ - "0x1", - "0x0", - "0x2", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 395543, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 32, - "stack": [ - "0x1", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 395540, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 65, - "stack": [ - "0x1", - "0x0", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 395537, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 66, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 395534, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 67, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 395531, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 68, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 395528, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 69, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 393428, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH5", - "pc": 70, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393425, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 76, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393422, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP6", - "pc": 78, - "stack": [ - "0x1", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x10" - ] - }, - { - "depth": 1, - "gas": 393419, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 79, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393416, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 80, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393413, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP7", - "pc": 81, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393410, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 82, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0", - "0x10" - ] - }, - { - "depth": 1, - "gas": 393405, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 83, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393402, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 86, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 393399, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 87, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393396, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 88, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x100", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 393386, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 89, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x2540be400", - "0x100", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393383, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 90, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393380, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 91, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 92, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 94, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 96, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393366, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 98, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 393363, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 99, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 393360, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 100, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 393357, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 101, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x1" - ] - }, - { - "depth": 1, - "gas": 393354, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 102, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x1", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 393349, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 103, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 393346, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 104, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 393343, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 105, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393340, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 106, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393337, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 107, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393334, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 108, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393331, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 109, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400", - "0x100" - ] - }, - { - "depth": 1, - "gas": 393328, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 110, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400", - "0x0" - ] - }, - { - "depth": 1, - "gas": 393325, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 111, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 393322, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 112, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100", - "0x2540be400", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 393319, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 113, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 373319, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 114, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100" - ] - }, - { - "depth": 1, - "gas": 373316, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 116, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 373313, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 117, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 371213, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 118, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 371210, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP9", - "pc": 119, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 371207, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 120, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 371204, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 121, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 371201, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 122, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 351201, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 123, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 351198, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 124, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 351195, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 125, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 351190, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 126, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 351187, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 159, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 351184, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 160, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 351181, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 161, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 349081, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH3", - "pc": 162, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349078, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 166, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 349075, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP11", - "pc": 167, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349072, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 168, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 349069, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 169, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349066, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 170, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0", - "0x10" - ] - }, - { - "depth": 1, - "gas": 349061, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 171, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349058, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 172, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 349048, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 173, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 349045, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 174, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 349042, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 175, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 349037, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 176, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 349034, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 177, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 349031, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 178, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100000", - "0x1", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 349026, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 179, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 349023, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 180, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 349020, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 181, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 349017, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 182, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349014, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 183, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 349011, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 184, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 349008, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 185, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x100000", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 329008, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 186, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 329005, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 187, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 326905, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 188, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 326902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 189, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 326899, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 190, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 326896, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 191, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 326893, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 192, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 306893, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP7", - "pc": 193, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 306890, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 194, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 306887, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 195, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 306882, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 196, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 306879, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 229, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 306876, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 230, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 306873, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 231, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 304773, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 232, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304770, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP11", - "pc": 233, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304767, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 234, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 304764, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 235, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304761, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 236, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x10" - ] - }, - { - "depth": 1, - "gas": 304756, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 237, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304753, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 238, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 304743, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 239, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1" - ] - }, - { - "depth": 1, - "gas": 304740, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 240, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 304737, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 241, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 304732, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 242, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 304729, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 243, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 304726, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 244, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000", - "0x1", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 304721, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 245, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 304718, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 246, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 304715, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 247, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 304712, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 248, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304709, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 249, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304706, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 250, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 304703, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 251, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x0", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 304700, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 252, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 304697, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 253, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 304694, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 254, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x100000", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 284694, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 255, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 284691, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 256, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284591, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 257, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284588, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 258, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284585, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 259, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284582, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 260, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 284579, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 261, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284479, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 262, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284476, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP9", - "pc": 263, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 284473, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 264, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284470, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 265, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 284467, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 266, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 284464, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 267, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 284461, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 268, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284456, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 269, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 284453, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 270, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 284450, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 271, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 284447, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 272, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 284347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 273, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 284344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP10", - "pc": 274, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284341, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 275, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284338, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP9", - "pc": 276, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284335, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 277, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 284330, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 278, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10" - ] - }, - { - "depth": 1, - "gas": 284327, - "gasCost": 60, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 279, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10", - "0x100" - ] - }, - { - "depth": 1, - "gas": 284267, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 280, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284264, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 281, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000000000000000000000000000000", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284261, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 282, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000000000000000000000000000000", - "0x100000000000000000000000000000000", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 284256, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 283, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000000000000000000000000000000", - "0x10000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284253, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP7", - "pc": 284, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10000000000000000000000000000000000000", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284250, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 285, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10000000000000000000000000000000000000", - "0x100000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 284245, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 286, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284242, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 287, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 284239, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 288, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x10000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284236, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 289, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x10000000000000000000000000000000000000", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 284233, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 290, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x10000000000000000000000000000000000000", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 284230, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 291, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x10000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 284227, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 292, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x2540be400", - "0x100000", - "0x10000000000000000000000000000000000000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 284224, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 293, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000", - "0x10000000000000000000000000000000000000", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 284221, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 294, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000", - "0x100000000000000000000000000002540be400" - ] - }, - { - "depth": 1, - "gas": 284218, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 295, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x100000000000000000000000000002540be400", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 284215, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 296, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x100000000000000000000000000002540be400", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 284115, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP7", - "pc": 297, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 284112, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 298, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284012, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 299, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 284009, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP9", - "pc": 300, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 284006, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 301, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 284003, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP9", - "pc": 302, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 284000, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 303, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2", - "0x3", - "0x1" - ] - }, - { - "depth": 1, - "gas": 283900, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP5", - "pc": 304, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 283897, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 305, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 283894, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 306, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 283889, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 307, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 283886, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 308, - "stack": [ - "0x1", - "0x10", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 283883, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 309, - "stack": [ - "0x1", - "0x10", - "0x2", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 283880, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 310, - "stack": [ - "0x1", - "0x10", - "0x2", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 283877, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 311, - "stack": [ - "0x1", - "0x10", - "0x2", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 281777, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP5", - "pc": 312, - "stack": [ - "0x1", - "0x10", - "0x2", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0" - ] - }, - { - "depth": 1, - "gas": 281774, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 313, - "stack": [ - "0x1", - "0x10", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 281771, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 314, - "stack": [ - "0x1", - "0x10", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 281768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 315, - "stack": [ - "0x1", - "0x10", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0" - ] - }, - { - "depth": 1, - "gas": 281765, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP6", - "pc": 316, - "stack": [ - "0x1", - "0x10", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 281762, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 317, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0", - "0x10" - ] - }, - { - "depth": 1, - "gas": 281757, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 318, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 281754, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 319, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 281744, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 320, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x1" - ] - }, - { - "depth": 1, - "gas": 281741, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 321, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 281738, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 322, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 281733, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 323, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 281730, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 324, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff", - "0x1" - ] - }, - { - "depth": 1, - "gas": 281725, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 325, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 281722, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 326, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 281719, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 327, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 281716, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 328, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 281713, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 329, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 281710, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 330, - "stack": [ - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 281707, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 331, - "stack": [ - "0x1", - "0x100000", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 261707, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 332, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 261704, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 333, - "stack": [ - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261604, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 334, - "stack": [ - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261601, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 335, - "stack": [ - "0x1", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261598, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 338, - "stack": [ - "0x1", - "0x3", - "0x3", - "0x15a" - ] - }, - { - "depth": 1, - "gas": 261588, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 346, - "stack": [ - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261587, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 347, - "stack": [ - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261584, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 349, - "stack": [ - "0x1", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261581, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 350, - "stack": [ - "0x1", - "0x3", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261578, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 351, - "stack": [ - "0x1", - "0x3", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261575, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 352, - "stack": [ - "0x1", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261572, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 354, - "stack": [ - "0x1", - "0x3", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 261569, - "gasCost": 36, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 355, - "stack": [ - "0x1", - "0x3", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261533, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 356, - "stack": [ - "0x1", - "0x3", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 261530, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 358, - "stack": [ - "0x1", - "0x3", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261527, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 360, - "stack": [ - "0x1", - "0x3", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261524, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 361, - "stack": [ - "0x1", - "0x3", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 261521, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 362, - "stack": [ - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261518, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 363, - "stack": [ - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x3", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261515, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 364, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x3", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 261512, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 365, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261509, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 366, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261506, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DIV", - "pc": 367, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261501, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 368, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261498, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 369, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261495, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 370, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 261492, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 371, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 261489, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 372, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 261389, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 373, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 261386, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 375, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261383, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 376, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261380, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 377, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 261377, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 378, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261374, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 380, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x0", - "0x10" - ] - }, - { - "depth": 1, - "gas": 261369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 381, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261366, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "EXP", - "pc": 384, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 261356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 385, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261353, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 387, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 389, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 391, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 261344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 392, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 261341, - "gasCost": 5, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MUL", - "pc": 393, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0x1", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 261336, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 394, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 261333, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 395, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0x1", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 261330, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 396, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x100000", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261327, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 397, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x1", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 261324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 398, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 399, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261318, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 400, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 261218, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 401, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261215, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 402, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 261115, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 403, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 261112, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 405, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 261109, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 406, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 259009, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 407, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 259006, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 408, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 259003, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 409, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 259000, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 410, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 258997, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 411, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0", - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 238997, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 412, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 238994, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 445, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ] - }, - { - "depth": 1, - "gas": 238991, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 446, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ] - }, - { - "depth": 1, - "gas": 238988, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 447, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ] - }, - { - "depth": 1, - "gas": 238985, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 448, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ] - }, - { - "depth": 1, - "gas": 238982, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 449, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ] - }, - { - "depth": 1, - "gas": 236882, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 450, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ] - }, - { - "depth": 1, - "gas": 236879, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 452, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 236876, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 454, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 236873, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 456, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 236870, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 457, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 236867, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 458, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 236864, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 459, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 236861, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 460, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 236858, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 461, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 236855, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 462, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 236852, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 463, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 236849, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 464, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 236846, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 465, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 236843, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 466, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ] - }, - { - "depth": 1, - "gas": 216843, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 467, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 216840, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 468, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 216740, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 469, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 216737, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP8", - "pc": 470, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 216734, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 471, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 216731, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 472, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 216728, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 473, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 216725, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 474, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 216625, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 475, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 216622, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 476, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1" - ] - }, - { - "depth": 1, - "gas": 216619, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 477, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ] - }, - { - "depth": 1, - "gas": 216616, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 478, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ] - }, - { - "depth": 1, - "gas": 214516, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 479, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 214513, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 480, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 214510, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 481, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 214507, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP4", - "pc": 482, - "refund": 19900, - "stack": [ - "0x1", - "0x2", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ] - }, - { - "depth": 1, - "gas": 214504, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 483, - "refund": 19900, - "stack": [ - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 214501, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 484, - "refund": 19900, - "stack": [ - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 214498, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 485, - "refund": 19900, - "stack": [ - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x2", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 214495, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 486, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ] - }, - { - "depth": 1, - "gas": 194495, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 487, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 194492, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 489, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4" - ] - }, - { - "depth": 1, - "gas": 194489, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 490, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x4" - ] - }, - { - "depth": 1, - "gas": 192389, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 491, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 192386, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 492, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 192383, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 493, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 192380, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 494, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 192377, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 495, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x1", - "0x4" - ] - }, - { - "depth": 1, - "gas": 172377, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 496, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 172374, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 497, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x4" - ] - }, - { - "depth": 1, - "gas": 172371, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 498, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 172368, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 499, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 172365, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 532, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 172362, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 533, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x0" - ] - }, - { - "depth": 1, - "gas": 172359, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 534, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 172356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 535, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 172353, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 536, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 170253, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 537, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x0" - ] - }, - { - "depth": 1, - "gas": 170250, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 539, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x0", - "0x11" - ] - }, - { - "depth": 1, - "gas": 170247, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP7", - "pc": 540, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x11", - "0x0" - ] - }, - { - "depth": 1, - "gas": 170244, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 541, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x11", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 170241, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 542, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x11", - "0x0" - ] - }, - { - "depth": 1, - "gas": 170238, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 543, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x11" - ] - }, - { - "depth": 1, - "gas": 170235, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 544, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x11", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 150235, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 545, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 150232, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 546, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x4" - ] - }, - { - "depth": 1, - "gas": 150132, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP5", - "pc": 547, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x1" - ] - }, - { - "depth": 1, - "gas": 150129, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP6", - "pc": 548, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x1" - ] - }, - { - "depth": 1, - "gas": 150126, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 549, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 150123, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 550, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x2" - ] - }, - { - "depth": 1, - "gas": 150120, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 551, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x4", - "0x2", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 150117, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 552, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0x2", - "0x4" - ] - }, - { - "depth": 1, - "gas": 150017, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 553, - "refund": 19900, - "stack": [ - "0x1", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 150014, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 554, - "refund": 19900, - "stack": [ - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 150011, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 555, - "refund": 19900, - "stack": [ - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 150008, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 556, - "refund": 19900, - "stack": [ - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x1", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" - ] - }, - { - "depth": 1, - "gas": 150005, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 557, - "refund": 19900, - "stack": [ - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c" - ] - }, - { - "depth": 1, - "gas": 150002, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 558, - "refund": 19900, - "stack": [ - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c" - ] - }, - { - "depth": 1, - "gas": 147902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 559, - "refund": 19900, - "stack": [ - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 147899, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP3", - "pc": 561, - "refund": 19900, - "stack": [ - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x0", - "0x12" - ] - }, - { - "depth": 1, - "gas": 147896, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 562, - "refund": 19900, - "stack": [ - "0x0", - "0x12", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 147893, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 563, - "refund": 19900, - "stack": [ - "0x0", - "0x12", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 147890, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 564, - "refund": 19900, - "stack": [ - "0x0", - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x12" - ] - }, - { - "depth": 1, - "gas": 147887, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 565, - "refund": 19900, - "stack": [ - "0x0", - "0x0", - "0x12", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c" - ] - }, - { - "depth": 1, - "gas": 147884, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 566, - "refund": 19900, - "stack": [ - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x12", - "0x0" - ] - }, - { - "depth": 1, - "gas": 147881, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 567, - "refund": 19900, - "stack": [ - "0x0", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c", - "0x12" - ] - }, - { - "depth": 1, - "gas": 147878, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 568, - "refund": 19900, - "stack": [ - "0x0", - "0x12", - "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c" - ] - }, - { - "depth": 1, - "gas": 127878, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 569, - "refund": 19900, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 127875, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 571, - "refund": 19900, - "stack": [ - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 127872, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 572, - "refund": 19900, - "stack": [ - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127869, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 605, - "refund": 19900, - "stack": [ - "0x0", - "0x80", - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0" - ] - }, - { - "depth": 1, - "gas": 127866, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 606, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127863, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 609, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x80", - "0x0", - "0x266" - ] - }, - { - "depth": 1, - "gas": 127860, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 610, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127857, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMP", - "pc": 613, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x289" - ] - }, - { - "depth": 1, - "gas": 127849, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 649, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127848, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 650, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127845, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 652, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127842, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 653, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127839, - "gasCost": 9, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 654, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x20", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127830, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "PUSH1", - "pc": 655, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127827, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "SWAP1", - "pc": 657, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127824, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "PUSH1", - "pc": 658, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127821, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP4", - "pc": 660, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127818, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP3", - "pc": 661, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127815, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "ADD", - "pc": 662, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127812, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP2", - "pc": 663, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 127809, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP6", - "pc": 664, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127806, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "ADD", - "pc": 665, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127803, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP7", - "pc": 666, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 127800, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP6", - "pc": 667, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127797, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP1", - "pc": 668, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127794, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "JUMPDEST", - "pc": 669, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127793, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "PUSH1", - "pc": 670, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127790, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP2", - "pc": 672, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 127787, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "LT", - "pc": 673, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127784, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "ISZERO", - "pc": 674, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127781, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "PUSH2", - "pc": 675, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127778, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "JUMPI", - "pc": 678, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0", - "0x34f" - ] - }, - { - "depth": 1, - "gas": 127768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "PUSH1", - "pc": 679, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127765, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "NOT", - "pc": 681, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 127762, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP10", - "pc": 682, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 127759, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP6", - "pc": 683, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127756, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "SUB", - "pc": 684, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80", - "0x100" - ] - }, - { - "depth": 1, - "gas": 127753, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "ADD", - "pc": 685, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127750, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "op": "DUP6", - "pc": 686, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x60" - ] - }, - { - "depth": 1, - "gas": 127747, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 687, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x60", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 127741, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "op": "DUP3", - "pc": 688, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127738, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "op": "SLOAD", - "pc": 689, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127638, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "op": "DUP1", - "pc": 690, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127635, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "op": "DUP6", - "pc": 691, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127632, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 692, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x1", - "0x100" - ] - }, - { - "depth": 1, - "gas": 127620, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 693, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127617, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 695, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127614, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 696, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127611, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MSTORE", - "pc": 697, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127608, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 698, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127605, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 700, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127602, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 701, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127599, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 702, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127596, - "gasCost": 36, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "KECCAK256", - "pc": 703, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127560, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 704, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x20", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 127557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP7", - "pc": 705, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 706, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x20", - "0x100" - ] - }, - { - "depth": 1, - "gas": 127551, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 707, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x120" - ] - }, - { - "depth": 1, - "gas": 127548, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 708, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127545, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 709, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 127542, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPDEST", - "pc": 710, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127541, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 711, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127538, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP4", - "pc": 713, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127535, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 714, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127532, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP4", - "pc": 715, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127529, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 716, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127526, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "LT", - "pc": 717, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127523, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 718, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127520, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPI", - "pc": 721, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1", - "0x0", - "0x2d7" - ] - }, - { - "depth": 1, - "gas": 127510, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "POP", - "pc": 722, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127508, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 723, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127505, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMP", - "pc": 726, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0", - "0x300" - ] - }, - { - "depth": 1, - "gas": 127497, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPDEST", - "pc": 768, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127496, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 769, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127493, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SLOAD", - "pc": 770, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x0", - "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" - ] - }, - { - "depth": 1, - "gas": 127393, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 771, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 127390, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 772, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 773, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127384, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "LT", - "pc": 774, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127381, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ISZERO", - "pc": 775, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127378, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 776, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127375, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPI", - "pc": 779, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x0", - "0x31f" - ] - }, - { - "depth": 1, - "gas": 127365, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 780, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127362, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 782, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127359, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 784, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127356, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SHL", - "pc": 786, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127353, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SUB", - "pc": 787, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 127350, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 788, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 127347, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "AND", - "pc": 789, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 127344, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 790, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 127341, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 791, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0", - "0x100000", - "0x120" - ] - }, - { - "depth": 1, - "gas": 127335, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 792, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x120", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127332, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP11", - "pc": 793, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x100000", - "0x120" - ] - }, - { - "depth": 1, - "gas": 127329, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 794, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x100000", - "0x120", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127326, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 795, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x100000", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127323, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 796, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127320, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 798, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127317, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 799, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127316, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 800, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127313, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 801, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127310, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 802, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127307, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 803, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127304, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 804, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127301, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 807, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1", - "0x1", - "0x33a" - ] - }, - { - "depth": 1, - "gas": 127291, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 826, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127290, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 827, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127288, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 828, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 127286, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 829, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127284, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 830, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127281, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP8", - "pc": 831, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x140", - "0x100", - "0x0", - "0x0", - "0x0", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 127278, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 832, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x140", - "0x100", - "0x0", - "0x0", - "0x0", - "0xa0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127275, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 833, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x140", - "0x100", - "0x0", - "0x0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 127272, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP4", - "pc": 834, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x100", - "0x0", - "0x0", - "0x0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127269, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 835, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x0", - "0x0", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 127267, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 836, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127264, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 838, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127261, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP4", - "pc": 839, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127258, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 840, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127255, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 841, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127252, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 842, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127249, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 843, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127246, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 846, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x29d" - ] - }, - { - "depth": 1, - "gas": 127238, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 669, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127237, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 670, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127234, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 672, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x3" - ] - }, - { - "depth": 1, - "gas": 127231, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 673, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x3", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127228, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 674, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127225, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 675, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127222, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 678, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x0", - "0x34f" - ] - }, - { - "depth": 1, - "gas": 127212, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 679, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127209, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "NOT", - "pc": 681, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 127206, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP10", - "pc": 682, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 127203, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 683, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 127200, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SUB", - "pc": 684, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127197, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 685, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 127194, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 686, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 127191, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "MSTORE", - "pc": 687, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xa0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 127188, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 688, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127185, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SLOAD", - "pc": 689, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127085, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP1", - "pc": 690, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 127082, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 691, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 127079, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 692, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x2", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127073, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 693, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 127070, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP5", - "pc": 695, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127067, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP2", - "pc": 696, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 127064, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "MSTORE", - "pc": 697, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127061, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 698, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127058, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP1", - "pc": 700, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127055, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP2", - "pc": 701, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127052, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP1", - "pc": 702, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127049, - "gasCost": 36, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "KECCAK256", - "pc": 703, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 127013, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP1", - "pc": 704, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0x20", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 127010, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP7", - "pc": 705, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x20" - ] - }, - { - "depth": 1, - "gas": 127007, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "ADD", - "pc": 706, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x20", - "0x140" - ] - }, - { - "depth": 1, - "gas": 127004, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP2", - "pc": 707, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x160" - ] - }, - { - "depth": 1, - "gas": 127001, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SWAP1", - "pc": 708, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126998, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP5", - "pc": 709, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 126995, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "JUMPDEST", - "pc": 710, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126994, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 711, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126991, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP4", - "pc": 713, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126988, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP2", - "pc": 714, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126985, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP4", - "pc": 715, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126982, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "ADD", - "pc": 716, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x2", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126979, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "LT", - "pc": 717, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126976, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH2", - "pc": 718, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126973, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "JUMPI", - "pc": 721, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x1", - "0x2d7" - ] - }, - { - "depth": 1, - "gas": 126963, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "JUMPDEST", - "pc": 727, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126962, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP3", - "pc": 728, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126959, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SLOAD", - "pc": 729, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 126859, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 730, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400" - ] - }, - { - "depth": 1, - "gas": 126856, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 732, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126853, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "PUSH1", - "pc": 734, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126850, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SHL", - "pc": 736, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 126847, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "SUB", - "pc": 737, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 126844, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP1", - "pc": 738, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 126841, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP3", - "pc": 739, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 126838, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "AND", - "pc": 740, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffffffffffffff", - "0x100000000000000000000000000002540be400" - ] - }, - { - "depth": 1, - "gas": 126835, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "op": "DUP8", - "pc": 741, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400" - ] - }, - { - "depth": 1, - "gas": 126832, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 742, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff", - "0x2540be400", - "0x160" - ] - }, - { - "depth": 1, - "gas": 126826, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "SWAP1", - "pc": 743, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000000000000000000000000002540be400", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 126823, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "DUP13", - "pc": 744, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000000000000000000000000002540be400" - ] - }, - { - "depth": 1, - "gas": 126820, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "SHR", - "pc": 745, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000000000000000000000000002540be400", - "0x80" - ] - }, - { - "depth": 1, - "gas": 126817, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "AND", - "pc": 746, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffff", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126814, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "DUP13", - "pc": 747, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126811, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "DUP7", - "pc": 748, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126808, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400" - ], - "op": "ADD", - "pc": 749, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000", - "0x20", - "0x160" - ] - }, - { - "depth": 1, - "gas": 126805, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 750, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x100000", - "0x180" - ] - }, - { - "depth": 1, - "gas": 126799, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 751, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126796, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 753, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 126793, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 754, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x160", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x40", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126790, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 755, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x40", - "0x160" - ] - }, - { - "depth": 1, - "gas": 126787, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP4", - "pc": 756, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126784, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 757, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126781, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP2", - "pc": 758, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126778, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 759, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x1", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6" - ] - }, - { - "depth": 1, - "gas": 126775, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 760, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 126772, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 761, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126769, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 763, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126766, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 764, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126763, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 767, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x2c6" - ] - }, - { - "depth": 1, - "gas": 126755, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 710, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126754, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 711, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126751, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP4", - "pc": 713, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126748, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 714, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126745, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP4", - "pc": 715, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126742, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 716, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x2", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126739, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 717, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 126736, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 718, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126733, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 721, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1", - "0x0", - "0x2d7" - ] - }, - { - "depth": 1, - "gas": 126723, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 722, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126721, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 723, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126718, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 726, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2", - "0x300" - ] - }, - { - "depth": 1, - "gas": 126710, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 768, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126709, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 769, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126706, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SLOAD", - "pc": 770, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x2", - "0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf7" - ] - }, - { - "depth": 1, - "gas": 126606, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 771, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126603, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 772, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126600, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 773, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126597, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 774, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126594, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 775, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126591, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 776, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126588, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 779, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x31f" - ] - }, - { - "depth": 1, - "gas": 126578, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 799, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126577, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 800, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126574, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 801, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126571, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 802, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126568, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 803, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126565, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 804, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126562, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 807, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x33a" - ] - }, - { - "depth": 1, - "gas": 126552, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 826, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126551, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 827, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126549, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 828, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126547, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 829, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126545, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 830, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xc0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126542, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP8", - "pc": 831, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1a0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 126539, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 832, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1a0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126536, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 833, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1a0", - "0x140", - "0x1", - "0x0", - "0x1", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 126533, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP4", - "pc": 834, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x140", - "0x1", - "0x0", - "0x1", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126530, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 835, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 126528, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 836, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126525, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 838, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126522, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP4", - "pc": 839, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126519, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 840, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126516, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 841, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x1", - "0x0", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126513, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 842, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126510, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 843, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126507, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 846, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x29d" - ] - }, - { - "depth": 1, - "gas": 126499, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 669, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126498, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 670, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126495, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 672, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 126492, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 673, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x3", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126489, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 674, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126486, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 675, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126483, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 678, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0", - "0x34f" - ] - }, - { - "depth": 1, - "gas": 126473, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 679, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126470, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "NOT", - "pc": 681, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 126467, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP10", - "pc": 682, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 126464, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 683, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 126461, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SUB", - "pc": 684, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x80", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126458, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 685, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x120" - ] - }, - { - "depth": 1, - "gas": 126455, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 686, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x100" - ] - }, - { - "depth": 1, - "gas": 126452, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "MSTORE", - "pc": 687, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x100", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 126449, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 688, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126446, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SLOAD", - "pc": 689, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126346, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP1", - "pc": 690, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126343, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP6", - "pc": 691, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126340, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 692, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x1", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126334, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 693, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126331, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 695, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126328, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 696, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 126325, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MSTORE", - "pc": 697, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0", - "0x2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126322, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 698, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126319, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 700, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126316, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 701, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126313, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 702, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126310, - "gasCost": 36, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "KECCAK256", - "pc": 703, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126274, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 704, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x20", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 126271, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP7", - "pc": 705, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126268, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 706, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x20", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 126265, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 707, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 126262, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 708, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126259, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 709, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 126256, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPDEST", - "pc": 710, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126255, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 711, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126252, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP4", - "pc": 713, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126249, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 714, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126246, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP4", - "pc": 715, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126243, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 716, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x1", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126240, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "LT", - "pc": 717, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126237, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 718, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126234, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPI", - "pc": 721, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1", - "0x0", - "0x2d7" - ] - }, - { - "depth": 1, - "gas": 126224, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "POP", - "pc": 722, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126222, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 723, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126219, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMP", - "pc": 726, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0", - "0x300" - ] - }, - { - "depth": 1, - "gas": 126211, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPDEST", - "pc": 768, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126210, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 769, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126207, - "gasCost": 100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SLOAD", - "pc": 770, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x0", - "0x405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace" - ] - }, - { - "depth": 1, - "gas": 126107, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 771, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126104, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 772, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126101, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP2", - "pc": 773, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126098, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "LT", - "pc": 774, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126095, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ISZERO", - "pc": 775, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126092, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 776, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126089, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "JUMPI", - "pc": 779, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x0", - "0x31f" - ] - }, - { - "depth": 1, - "gas": 126079, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 780, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126076, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 782, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126073, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 784, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126070, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SHL", - "pc": 786, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 126067, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SUB", - "pc": 787, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 126064, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 788, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 126061, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "AND", - "pc": 789, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0xffffffffffffffffffffffffffffffff", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126058, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 790, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126055, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 791, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0", - "0x100000", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 126049, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 792, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1c0", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126046, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP11", - "pc": 793, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0", - "0x1", - "0x100000", - "0x1c0" - ] - }, - { - "depth": 1, - "gas": 126043, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 794, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0", - "0x1", - "0x100000", - "0x1c0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 126040, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 795, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x0", - "0x1", - "0x100000", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 126037, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 796, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126034, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 798, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126031, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 799, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126030, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP3", - "pc": 800, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126027, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 801, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126024, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 802, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126021, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 803, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 126018, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 804, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126015, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 807, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1", - "0x1", - "0x33a" - ] - }, - { - "depth": 1, - "gas": 126005, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 826, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126004, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 827, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 126002, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 828, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1", - "0x100000" - ] - }, - { - "depth": 1, - "gas": 126000, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 829, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 125998, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 830, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xe0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125995, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP8", - "pc": 831, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1e0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 125992, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 832, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1e0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0xe0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 125989, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP5", - "pc": 833, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x1e0", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x100" - ] - }, - { - "depth": 1, - "gas": 125986, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP4", - "pc": 834, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1a0", - "0x2", - "0x0", - "0x2", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125983, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 835, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x2", - "0x0", - "0x2", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 125981, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 836, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x2", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 125978, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 838, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x2", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 125975, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP4", - "pc": 839, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x1", - "0x0", - "0x2", - "0x2" - ] - }, - { - "depth": 1, - "gas": 125972, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 840, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x1", - "0x0", - "0x2", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 125969, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP3", - "pc": 841, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x1", - "0x0", - "0x2", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125966, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ADD", - "pc": 842, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x2", - "0x1" - ] - }, - { - "depth": 1, - "gas": 125963, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 843, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125960, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 846, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x29d" - ] - }, - { - "depth": 1, - "gas": 125952, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 669, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125951, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 670, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125948, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP2", - "pc": 672, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125945, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LT", - "pc": 673, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125942, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "ISZERO", - "pc": 674, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 125939, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 675, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x1" - ] - }, - { - "depth": 1, - "gas": 125936, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPI", - "pc": 678, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3", - "0x1", - "0x34f" - ] - }, - { - "depth": 1, - "gas": 125926, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 847, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125925, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 848, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125923, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP2", - "pc": 849, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x1e0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 125920, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP9", - "pc": 850, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x266", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x0", - "0x3", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125917, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP8", - "pc": 851, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x0", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x0", - "0x3", - "0x266" - ] - }, - { - "depth": 1, - "gas": 125914, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 852, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x0", - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 125912, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 853, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 125910, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 854, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 125908, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 855, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20", - "0x80", - "0x100" - ] - }, - { - "depth": 1, - "gas": 125906, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 856, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 125904, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 857, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 125902, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 858, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80", - "0x0" - ] - }, - { - "depth": 1, - "gas": 125900, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "POP", - "pc": 859, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266", - "0x80" - ] - }, - { - "depth": 1, - "gas": 125898, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 860, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x266" - ] - }, - { - "depth": 1, - "gas": 125890, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 614, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125889, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 615, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125886, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "MLOAD", - "pc": 617, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 125883, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP1", - "pc": 618, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 125880, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP2", - "pc": 619, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x1e0", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 125877, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SUB", - "pc": 620, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x80", - "0x80", - "0x1e0" - ] - }, - { - "depth": 1, - "gas": 125874, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "SWAP1", - "pc": 621, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x80", - "0x160" - ] - }, - { - "depth": 1, - "gas": 125871, - "gasCost": 3566, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "LOG1", - "pc": 622, - "refund": 19900, - "stack": [ - "0xffa41d88fdf991119b5da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0", - "0x160", - "0x80" - ] - }, - { - "depth": 1, - "gas": 122305, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 623, - "refund": 19900, - "stack": [] - }, - { - "depth": 1, - "gas": 122302, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMP", - "pc": 626, - "refund": 19900, - "stack": [ - "0x35d" - ] - }, - { - "depth": 1, - "gas": 122294, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "JUMPDEST", - "pc": 861, - "refund": 19900, - "stack": [] - }, - { - "depth": 1, - "gas": 122293, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 862, - "refund": 19900, - "stack": [] - }, - { - "depth": 1, - "gas": 122290, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "DUP1", - "pc": 865, - "refund": 19900, - "stack": [ - "0x263" - ] - }, - { - "depth": 1, - "gas": 122287, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH2", - "pc": 866, - "refund": 19900, - "stack": [ - "0x263", - "0x263" - ] - }, - { - "depth": 1, - "gas": 122284, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000" - ], - "op": "PUSH1", - "pc": 869, - "refund": 19900, - "stack": [ - "0x263", - "0x263", - "0x36c" - ] - }, - { - "depth": 1, - "gas": 122281, - "gasCost": 78, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000002540be400", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000100000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 871, - "refund": 19900, - "stack": [ - "0x263", - "0x263", - "0x36c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 122203, - "gasCost": 3, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e6100eb565b60008054600180", - "820183558280527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6", - "362f93160ef3e563600283040180546001600160801b03929093166010026101", - "000a9182021990921662100000919091021790556040517f47bd583cba710a1c", - "0fe1a3c584804e02f4deeddfcce05e11d14fb2dc4b4099f9916100e1916101f0", - "565b60405180910390a1565b6000800180546001808201835560009283526020", - "8320600283040180546001600160801b03929093166010026101000a91820219", - "909216678ac7230489e800009091021790556040517f0ffa41d88fdf991119b5", - "da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0916100e19161020a565b", - "805480835260008281526020808220940193909190825b600183818301106101", - "8757506101af565b82546001600160801b038116885260801c60208801526040", - "9096019590910190600201610176565b905490828110156101d0576001600160", - "801b03821686526020909501946001015b828110156101e657608082901c8652", - "6020860195505b5093949350505050565b602081526000610203602083018461", - "015f565b9392505050565b60208082526000906080830183820185845b600381", - "101561024a57868403601f19018352610238848361015f565b93509184019160", - "01918201910161021c565b5091969550505050505056fea164736f6c63430008", - "15000a0000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 872, - "refund": 19900, - "stack": [ - "0x263" - ] - }, - { - "depth": 1, - "gas": 122200, - "gasCost": 0, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e6100eb565b60008054600180", - "820183558280527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6", - "362f93160ef3e563600283040180546001600160801b03929093166010026101", - "000a9182021990921662100000919091021790556040517f47bd583cba710a1c", - "0fe1a3c584804e02f4deeddfcce05e11d14fb2dc4b4099f9916100e1916101f0", - "565b60405180910390a1565b6000800180546001808201835560009283526020", - "8320600283040180546001600160801b03929093166010026101000a91820219", - "909216678ac7230489e800009091021790556040517f0ffa41d88fdf991119b5", - "da2b6ec29837510c1c86345b5ce1560c7b7b3045a5a0916100e19161020a565b", - "805480835260008281526020808220940193909190825b600183818301106101", - "8757506101af565b82546001600160801b038116885260801c60208801526040", - "9096019590910190600201610176565b905490828110156101d0576001600160", - "801b03821686526020909501946001015b828110156101e657608082901c8652", - "6020860195505b5093949350505050565b602081526000610203602083018461", - "015f565b9392505050565b60208082526000906080830183820185845b600381", - "101561024a57868403601f19018352610238848361015f565b93509184019160", - "01918201910161021c565b5091969550505050505056fea164736f6c63430008", - "15000a0000000000000000000000000000000000000000000000000000000000" - ], - "op": "RETURN", - "pc": 874, - "refund": 19900, - "stack": [ - "0x263", - "0x0" - ] - } - ] - }, - "address": "0x5fc8d32690cc91d4c39d9d3abcbd16989f875707", - "tx_id": "0xfdcd87ec19de914510e903f6ad6b3f0b38d80236bb0c9895cd7fabbd48f462e8" -} \ No newline at end of file diff --git a/tests/data/trace_StaticArrayOfStaticArray.json b/tests/data/trace_StaticArrayOfStaticArray.json deleted file mode 100644 index bc05e98a..00000000 --- a/tests/data/trace_StaticArrayOfStaticArray.json +++ /dev/null @@ -1,775 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x192ee", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 48738, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 48735, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 48732, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48720, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 48718, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 48715, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48712, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48709, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 10, - "stack": [ - "0x0", - "0x1", - "0xf" - ] - }, - { - "depth": 1, - "gas": 48699, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 15, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 48698, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 48696, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 17, - "stack": [] - }, - { - "depth": 1, - "gas": 48693, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 19, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 48690, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 20, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46590, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 21, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46587, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 23, - "stack": [ - "0x0", - "0x0", - "0x4" - ] - }, - { - "depth": 1, - "gas": 46584, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 24, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x4" - ] - }, - { - "depth": 1, - "gas": 44484, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 25, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 44481, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 27, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 44478, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 29, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 44475, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 31, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x1", - "0x1", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 44472, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 32, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x1", - "0x1000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 44469, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 33, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 44466, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 34, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 44463, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 36, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x47" - ] - }, - { - "depth": 1, - "gas": 44460, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 38, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x47", - "0xc1" - ] - }, - { - "depth": 1, - "gas": 44457, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 39, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x0", - "0x8e000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 44454, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 40, - "stack": [ - "0x0", - "0x0", - "0x4", - "0x8e000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 44451, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 41, - "stack": [ - "0x0", - "0x0", - "0x8e000000000000000000000000000000000000000000000000", - "0x4" - ] - }, - { - "depth": 1, - "gas": 24451, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 42, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24448, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 44, - "stack": [ - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24445, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 46, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24442, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 48, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x1", - "0x80" - ] - }, - { - "depth": 1, - "gas": 24439, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 49, - "stack": [ - "0x0", - "0x0", - "0x1", - "0x100000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24436, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 50, - "stack": [ - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 24433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 51, - "stack": [ - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH9", - "pc": 52, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 62, - "stack": [ - "0x0", - "0x0", - "0x2a0000000000000000" - ] - }, - { - "depth": 1, - "gas": 24424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 63, - "stack": [ - "0x0", - "0x2a0000000000000000" - ] - }, - { - "depth": 1, - "gas": 24421, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 64, - "stack": [ - "0x2a0000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 65, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 67, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 68, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 70, - "stack": [ - "0x16", - "0x16", - "0x4d" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 72, - "stack": [ - "0x16", - "0x16", - "0x4d", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 73, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "RETURN", - "pc": 75, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0x0165878a594ca255338adfa4d48449f69242eb8f", - "tx_id": "0xd21dc33d9ad40852ab32b2b6fef18a4e76e204909e8f578c3ba96602506f793e" -} \ No newline at end of file diff --git a/tests/data/trace_StaticArrayOfStruct.json b/tests/data/trace_StaticArrayOfStruct.json deleted file mode 100644 index 1f0a3dfb..00000000 --- a/tests/data/trace_StaticArrayOfStruct.json +++ /dev/null @@ -1,809 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x1e9a6", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 70846, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 70843, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 70840, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 70828, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 70826, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 70823, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 70820, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 70817, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 10, - "stack": [ - "0x0", - "0x1", - "0xf" - ] - }, - { - "depth": 1, - "gas": 70807, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 15, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 70806, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 70804, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH4", - "pc": 17, - "stack": [] - }, - { - "depth": 1, - "gas": 70801, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0xffffffff" - ] - }, - { - "depth": 1, - "gas": 70798, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 24, - "stack": [ - "0xffffffff", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48698, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 25, - "stack": [] - }, - { - "depth": 1, - "gas": 48695, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 27, - "stack": [ - "0xa" - ] - }, - { - "depth": 1, - "gas": 48692, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 28, - "stack": [ - "0xa", - "0xa" - ] - }, - { - "depth": 1, - "gas": 46592, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 29, - "stack": [ - "0xa", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46589, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 31, - "stack": [ - "0xa", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 46586, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 33, - "stack": [ - "0xa", - "0x0", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 46583, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 34, - "stack": [ - "0xa", - "0x0", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46580, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 36, - "stack": [ - "0xa", - "0x0", - "0x10000000000000000000000000000000000000000", - "0xff" - ] - }, - { - "depth": 1, - "gas": 46577, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 38, - "stack": [ - "0xa", - "0x0", - "0x10000000000000000000000000000000000000000", - "0xff", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 46574, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 39, - "stack": [ - "0xa", - "0x0", - "0x10000000000000000000000000000000000000000", - "0xff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46571, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 40, - "stack": [ - "0xa", - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 46568, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP2", - "pc": 41, - "stack": [ - "0xa", - "0x0", - "0xffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46565, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 42, - "stack": [ - "0xa", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46562, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 43, - "stack": [ - "0xa", - "0x10000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 46559, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 44, - "stack": [ - "0xa", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 46556, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 45, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0xa" - ] - }, - { - "depth": 1, - "gas": 26556, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 46, - "stack": [] - }, - { - "depth": 1, - "gas": 26553, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 48, - "stack": [ - "0x8" - ] - }, - { - "depth": 1, - "gas": 26550, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 49, - "stack": [ - "0x8", - "0x8" - ] - }, - { - "depth": 1, - "gas": 24450, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 50, - "stack": [ - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24447, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 52, - "stack": [ - "0x8", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24444, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 54, - "stack": [ - "0x8", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24441, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 56, - "stack": [ - "0x8", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 24438, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 57, - "stack": [ - "0x8", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24435, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 58, - "stack": [ - "0x8", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 24432, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 59, - "stack": [ - "0x8", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24429, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADDRESS", - "pc": 60, - "stack": [ - "0x8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 61, - "stack": [ - "0x8", - "0x0", - "0xa513e6e4b8f2a923d98304ec87f64353c4d5c853" - ] - }, - { - "depth": 1, - "gas": 24424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 62, - "stack": [ - "0x8", - "0xa513e6e4b8f2a923d98304ec87f64353c4d5c853" - ] - }, - { - "depth": 1, - "gas": 24421, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 63, - "stack": [ - "0xa513e6e4b8f2a923d98304ec87f64353c4d5c853", - "0x8" - ] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 64, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 66, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 67, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 69, - "stack": [ - "0x16", - "0x16", - "0x4c" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 71, - "stack": [ - "0x16", - "0x16", - "0x4c", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 72, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "RETURN", - "pc": 74, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0xa513e6e4b8f2a923d98304ec87f64353c4d5c853", - "tx_id": "0x14672385cf8a244fb1557dcee6f8bdc7311cb9cd166fd401c9234ff8d1763a6c" -} \ No newline at end of file diff --git a/tests/data/trace_StaticInMapping.json b/tests/data/trace_StaticInMapping.json deleted file mode 100644 index a17aeca0..00000000 --- a/tests/data/trace_StaticInMapping.json +++ /dev/null @@ -1,38071 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": 312606, - "returnValue": "6080604052348015600f57600080fd5b506004361060325760003560e01c806312ae639714603757806332e43a111460b6575b600080fd5b60b660107fada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca39002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343000815000a", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 341297, - "gasCost": 3, - "depth": 1, - "stack": [] - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 341294, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 341291, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 341279, - "gasCost": 2, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 341277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 341274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 341271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 341268, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 341258, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 341257, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "ADDRESS", - "gas": 341255, - "gasCost": 2, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 19, - "op": "PUSH1", - "gas": 341253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fbdb2315678afecb367f032d93f642f64180aa3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "SWAP1", - "gas": 341250, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "DUP2", - "gas": 341247, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x5fbdb2315678afecb367f032d93f642f64180aa3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 23, - "op": "MSTORE", - "gas": 341244, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "PUSH1", - "gas": 341241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "DUP2", - "gas": 341238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "DUP2", - "gas": 341235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "MSTORE", - "gas": 341232, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 341229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "DUP1", - "gas": 341226, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP4", - "gas": 341223, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "KECCAK256", - "gas": 341220, - "gasCost": 42, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40", - "0x0" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 34, - "op": "PUSH1", - "gas": 341178, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 36, - "op": "NOT", - "gas": 341175, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", - "0x0" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 37, - "op": "SWAP1", - "gas": 341172, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "SSTORE", - "gas": 341169, - "gasCost": 22100, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0xdf7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - } - }, - { - "pc": 39, - "op": "CALLER", - "gas": 319069, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 40, - "op": "DUP4", - "gas": 319067, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 41, - "op": "MSTORE", - "gas": 319064, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0x0" - ], - "memory": [ - "0000000000000000000000005fbdb2315678afecb367f032d93f642f64180aa3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "DUP1", - "gas": 319061, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP4", - "gas": 319058, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "KECCAK256", - "gas": 319055, - "gasCost": 42, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40", - "0x0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 45, - "op": "PUSH1", - "gas": 319013, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 47, - "op": "SWAP1", - "gas": 319010, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x5" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 48, - "op": "DUP2", - "gas": 319007, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "SWAP1", - "gas": 319004, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722", - "0x5" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "SSTORE", - "gas": 319001, - "gasCost": 22100, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x5", - "0x723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - } - }, - { - "pc": 51, - "op": "PUSH1", - "gas": 296901, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "PUSH32", - "gas": 296898, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2d" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 86, - "op": "SSTORE", - "gas": 296895, - "gasCost": 22100, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2d", - "0xe2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 87, - "op": "PUSH1", - "gas": 274795, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 89, - "op": "PUSH1", - "gas": 274792, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x58" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 91, - "op": "SWAP1", - "gas": 274789, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x58", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 92, - "op": "DUP2", - "gas": 274786, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x58" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 93, - "op": "SSTORE", - "gas": 274783, - "gasCost": 22100, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x58", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 94, - "op": "PUSH1", - "gas": 252683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 96, - "op": "PUSH32", - "gas": 252680, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x64" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 129, - "op": "SSTORE", - "gas": 252677, - "gasCost": 22100, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x64", - "0xdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 130, - "op": "DUP3", - "gas": 230577, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 131, - "op": "MLOAD", - "gas": 230574, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x40" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 132, - "op": "PUSH1", - "gas": 230571, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 134, - "op": "DUP2", - "gas": 230568, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0xc0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 135, - "op": "ADD", - "gas": 230565, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0xc0", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 136, - "op": "DUP5", - "gas": 230562, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x140" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 137, - "op": "MSTORE", - "gas": 230559, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x140", - "0x40" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 138, - "op": "PUSH1", - "gas": 230556, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ] - }, - { - "pc": 140, - "op": "DUP1", - "gas": 230553, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x1" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ] - }, - { - "pc": 141, - "op": "DUP3", - "gas": 230550, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x1", - "0x1" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ] - }, - { - "pc": 142, - "op": "MSTORE", - "gas": 230547, - "gasCost": 9, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x1", - "0x1", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140" - ] - }, - { - "pc": 143, - "op": "SWAP5", - "gas": 230538, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x5", - "0x2", - "0x80", - "0x1" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 144, - "op": "DUP2", - "gas": 230535, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0x20" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 145, - "op": "ADD", - "gas": 230532, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 146, - "op": "DUP3", - "gas": 230529, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0xa0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 147, - "op": "SWAP1", - "gas": 230526, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0xa0", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 148, - "op": "MSTORE", - "gas": 230523, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0x2", - "0xa0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 149, - "op": "PUSH1", - "gas": 230517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 151, - "op": "SWAP4", - "gas": 230514, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x40", - "0x5", - "0x2", - "0x80", - "0x3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 152, - "op": "DUP2", - "gas": 230511, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x40" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 153, - "op": "ADD", - "gas": 230508, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x40", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 154, - "op": "DUP5", - "gas": 230505, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0xc0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 155, - "op": "SWAP1", - "gas": 230502, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0xc0", - "0x3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 156, - "op": "MSTORE", - "gas": 230499, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x3", - "0xc0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ] - }, - { - "pc": 157, - "op": "PUSH1", - "gas": 230493, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ] - }, - { - "pc": 159, - "op": "PUSH1", - "gas": 230490, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x4" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ] - }, - { - "pc": 161, - "op": "DUP3", - "gas": 230487, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x4", - "0x60" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ] - }, - { - "pc": 162, - "op": "ADD", - "gas": 230484, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x4", - "0x60", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ] - }, - { - "pc": 163, - "op": "MSTORE", - "gas": 230481, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x4", - "0xe0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003" - ] - }, - { - "pc": 164, - "op": "PUSH1", - "gas": 230475, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 166, - "op": "DUP2", - "gas": 230472, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 167, - "op": "ADD", - "gas": 230469, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x80", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 168, - "op": "SWAP3", - "gas": 230466, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x5", - "0x2", - "0x80", - "0x100" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 169, - "op": "SWAP1", - "gas": 230463, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x100", - "0x2", - "0x80", - "0x5" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 170, - "op": "SWAP3", - "gas": 230460, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x100", - "0x2", - "0x5", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 171, - "op": "MSTORE", - "gas": 230457, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x5", - "0x100" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 172, - "op": "PUSH1", - "gas": 230451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 174, - "op": "PUSH1", - "gas": 230448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 176, - "op": "DUP4", - "gas": 230445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0xa0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 177, - "op": "ADD", - "gas": 230442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0xa0", - "0x80" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 178, - "op": "DUP2", - "gas": 230439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0x120" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 179, - "op": "SWAP1", - "gas": 230436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0x120", - "0x6" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 180, - "op": "MSTORE", - "gas": 230433, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0x6", - "0x120" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005" - ] - }, - { - "pc": 181, - "op": "DUP4", - "gas": 230427, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 182, - "op": "SLOAD", - "gas": 230424, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0x3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 183, - "op": "SWAP5", - "gas": 228324, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x3", - "0x80", - "0x2", - "0x6", - "0x0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 184, - "op": "DUP6", - "gas": 228321, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x3", - "0x80", - "0x2", - "0x6", - "0x1" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 185, - "op": "ADD", - "gas": 228318, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x3", - "0x80", - "0x2", - "0x6", - "0x1", - "0x0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 186, - "op": "DUP5", - "gas": 228315, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x3", - "0x80", - "0x2", - "0x6", - "0x1" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 187, - "op": "SSTORE", - "gas": 228312, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x3", - "0x80", - "0x2", - "0x6", - "0x1", - "0x3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 188, - "op": "SWAP3", - "gas": 208312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x3", - "0x80", - "0x2", - "0x6" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 189, - "op": "SWAP1", - "gas": 208309, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x6", - "0x80", - "0x2", - "0x3" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 190, - "op": "SWAP5", - "gas": 208306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0", - "0x6", - "0x80", - "0x3", - "0x2" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 191, - "op": "MSTORE", - "gas": 208303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x2", - "0x0", - "0x6", - "0x80", - "0x3", - "0x0" - ], - "memory": [ - "000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 192, - "op": "SWAP3", - "gas": 208300, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x2", - "0x0", - "0x6", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 193, - "op": "PUSH2", - "gas": 208297, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x6", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 196, - "op": "SWAP3", - "gas": 208294, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x6", - "0x2", - "0xef" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 197, - "op": "MUL", - "gas": 208291, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0x6", - "0x2", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 198, - "op": "PUSH32", - "gas": 208286, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0x6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 231, - "op": "ADD", - "gas": 208283, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0x6", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 232, - "op": "SWAP1", - "gas": 208280, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 233, - "op": "DUP4", - "gas": 208277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 234, - "op": "SWAP1", - "gas": 208274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x6", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 235, - "op": "PUSH2", - "gas": 208271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 238, - "op": "JUMP", - "gas": 208268, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6", - "0x171" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 369, - "op": "JUMPDEST", - "gas": 208260, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 370, - "op": "PUSH1", - "gas": 208259, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 372, - "op": "DUP4", - "gas": 208256, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 373, - "op": "ADD", - "gas": 208253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 374, - "op": "SWAP2", - "gas": 208250, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 375, - "op": "DUP4", - "gas": 208247, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 376, - "op": "SWAP1", - "gas": 208244, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 377, - "op": "DUP3", - "gas": 208241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 378, - "op": "ISZERO", - "gas": 208238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 379, - "op": "PUSH2", - "gas": 208235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 382, - "op": "JUMPI", - "gas": 208232, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80", - "0x0", - "0x206" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 383, - "op": "SWAP2", - "gas": 208222, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 384, - "op": "PUSH1", - "gas": 208219, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 386, - "op": "MUL", - "gas": 208216, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x6", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 387, - "op": "DUP3", - "gas": 208211, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 388, - "op": "ADD", - "gas": 208208, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 389, - "op": "PUSH1", - "gas": 208205, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 208202, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 208201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 208198, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 208195, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x80", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 208192, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 208189, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 208186, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 208176, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 208173, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 208170, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 208167, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 208164, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 208161, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 208151, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 208148, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 206048, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 206045, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 206042, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 206039, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 206036, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 206033, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 206030, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 206025, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 206022, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 206019, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 206016, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 206013, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 206010, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 206007, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 206004, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 206001, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 205998, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 205995, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 205990, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 205987, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 205984, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 185984, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 185982, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 185979, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 185976, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 185973, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 185970, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 185967, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x0", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 185964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 185961, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 185958, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x20", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 185955, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x20", - "0x8", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 185952, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x20", - "0xf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 185947, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 185944, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 185941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 185938, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 185935, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 185932, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 185929, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 185924, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 185921, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 185913, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 185912, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 185909, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 185906, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0xa0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 185903, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 185900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 185897, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 185887, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 185884, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 185881, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 185878, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 185875, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 185872, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x8", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 185812, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 185809, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000000000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 185709, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 185706, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 185703, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 185700, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 185697, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 185694, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 185691, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0x10000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 185686, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0xffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 185683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 185680, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 185677, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 185674, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 185671, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 185668, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 185665, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 185662, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 185659, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 185656, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x10000000000000000", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 185651, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1", - "0x20000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 185648, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 185645, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2", - "0x20000000000000001", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000020000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 185545, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 185543, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xa0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 185540, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 185537, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 185534, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 185531, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 185528, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x8", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 185525, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 185522, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 185519, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x20", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 185516, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x20", - "0x10", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 185513, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x20", - "0x17" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 185508, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 185505, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 185502, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 185499, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 185496, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 185493, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 185490, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 185485, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 185482, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 185474, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 185473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 185470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 185467, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0xc0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 185464, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 185461, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 185458, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 185448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 185445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 185442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 185439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 185436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 185433, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x10", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 185373, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 185370, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000000000000000000020000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 185270, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 185267, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 185264, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 185261, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 185258, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 185255, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 185252, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 185247, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0xffffffffffffffff00000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 185244, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 185241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x100000000000000000000000000000000", - "0x20000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 185238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 185235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 185232, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 185229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 185226, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 185223, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 185220, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 185217, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x100000000000000000000000000000000", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 185212, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x20000000000000001", - "0x300000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 185209, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 185206, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3", - "0x300000000000000020000000000000001", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000300000000000000020000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 185106, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 185104, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 185101, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 185098, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 185095, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 185092, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 185089, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x10", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 185086, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 185083, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 185080, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x20", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 185077, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x20", - "0x18", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 185074, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x20", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 185069, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 185066, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 185063, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 185060, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 185057, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 185054, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 185051, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 185046, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 185043, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 185035, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 185034, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 185031, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 185028, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0xe0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 185025, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 185022, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 185019, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 185009, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 185006, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 185003, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 185000, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 184997, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 184994, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x18", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 184934, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 184931, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000000000000000000000300000000000000020000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 184831, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 184828, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 184825, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 184822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 184819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 184816, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 184813, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 184808, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 184805, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 184802, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1000000000000000000000000000000000000000000000000", - "0x300000000000000020000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 184799, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 184796, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 184793, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 184790, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 184787, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 184784, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 184781, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 184778, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x1000000000000000000000000000000000000000000000000", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 184773, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x300000000000000020000000000000001", - "0x4000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 184770, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x4000000000000000300000000000000020000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 184767, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4", - "0x4000000000000000300000000000000020000000000000001", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 184667, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 184665, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xe0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 184662, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 184659, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0xe0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 184656, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 184653, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 184650, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x18", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 184647, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 184644, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 184641, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 184638, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20", - "0x20", - "0x20", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 184635, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20", - "0x20", - "0x27" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 184630, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x140", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 184627, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 184624, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 184621, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 184618, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 184615, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 184612, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 184607, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 184604, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 184596, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 184595, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 184592, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 184589, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x100", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 184586, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 184583, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 184580, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 184570, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 184567, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 184564, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 184561, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 184558, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 184555, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 184545, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 184542, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 182442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 182439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 182436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 182433, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 182430, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 182427, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 182424, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 182419, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 182416, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 182413, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 182410, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 182407, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 182404, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 182401, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 182398, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 182395, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 182392, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 182389, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x1", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 182384, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 182381, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 182378, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5", - "0x5", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 162378, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 162376, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 162373, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 162370, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x100", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 162367, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 162364, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 162361, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x0", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 162358, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 162355, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 162352, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x20", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 162349, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x20", - "0x8", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 162346, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x20", - "0xf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 162341, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 162338, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 162335, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 162332, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0x0", - "0x140", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 162329, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 162326, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 162323, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 162318, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 162315, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 162307, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 162306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 162303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 162300, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x120", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 162297, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 162294, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 162291, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 162281, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 162278, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 162275, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 162272, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 162269, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 162266, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x8", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 162206, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 162203, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000000000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 162103, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 162100, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 162097, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 162094, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 162091, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 162088, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 162085, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0x10000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 162080, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0xffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 162077, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 162074, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10000000000000000", - "0x5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 162071, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 162068, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 162065, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 162062, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 162059, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 162056, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 162053, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 162050, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x10000000000000000", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 162045, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x5", - "0x60000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 162042, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 162039, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6", - "0x60000000000000005", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 161939, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 161937, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x120", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 161934, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x120" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 161931, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x120", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 161928, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 161925, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 161922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x8", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 161919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 161916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 161913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x20", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 161910, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x20", - "0x10", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 161907, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x20", - "0x17" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 161902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 161899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 161896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 161893, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 161890, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 161887, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 161884, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 161879, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 161876, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 161868, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 161867, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 161864, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 161861, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x140", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 161858, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 161855, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 161852, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x1", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 161842, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 161841, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 161838, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 161835, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 161832, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x0", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 472, - "op": "DUP3", - "gas": 161822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 473, - "op": "DUP2", - "gas": 161819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 474, - "op": "PUSH2", - "gas": 161816, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 477, - "op": "EXP", - "gas": 161813, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x10", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 478, - "op": "DUP2", - "gas": 161753, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 479, - "op": "SLOAD", - "gas": 161750, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x100000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 480, - "op": "SWAP1", - "gas": 161650, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x100000000000000000000000000000000", - "0x60000000000000005" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 481, - "op": "PUSH1", - "gas": 161647, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 483, - "op": "PUSH1", - "gas": 161644, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 485, - "op": "PUSH1", - "gas": 161641, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 487, - "op": "SHL", - "gas": 161638, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 488, - "op": "SUB", - "gas": 161635, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 489, - "op": "MUL", - "gas": 161632, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 490, - "op": "NOT", - "gas": 161627, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0xffffffffffffffff00000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 491, - "op": "AND", - "gas": 161624, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 492, - "op": "SWAP1", - "gas": 161621, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 493, - "op": "SSTORE", - "gas": 161618, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x60000000000000005", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 494, - "op": "PUSH1", - "gas": 161518, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 496, - "op": "ADD", - "gas": 161515, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x10", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 497, - "op": "PUSH1", - "gas": 161512, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 499, - "op": "DUP2", - "gas": 161509, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 500, - "op": "PUSH1", - "gas": 161506, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x20", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 502, - "op": "ADD", - "gas": 161503, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x20", - "0x18", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 503, - "op": "DIV", - "gas": 161500, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x20", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 504, - "op": "SWAP3", - "gas": 161495, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 505, - "op": "DUP4", - "gas": 161492, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 506, - "op": "ADD", - "gas": 161489, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 507, - "op": "SWAP3", - "gas": 161486, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 508, - "op": "PUSH1", - "gas": 161483, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 510, - "op": "SUB", - "gas": 161480, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 511, - "op": "MUL", - "gas": 161477, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 512, - "op": "PUSH2", - "gas": 161472, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 515, - "op": "JUMP", - "gas": 161469, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 161461, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 161460, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 161457, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 161454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 161451, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x0", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 472, - "op": "DUP3", - "gas": 161441, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 473, - "op": "DUP2", - "gas": 161438, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 474, - "op": "PUSH2", - "gas": 161435, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 477, - "op": "EXP", - "gas": 161432, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x18", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 478, - "op": "DUP2", - "gas": 161372, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 479, - "op": "SLOAD", - "gas": 161369, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1000000000000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 480, - "op": "SWAP1", - "gas": 161269, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1000000000000000000000000000000000000000000000000", - "0x60000000000000005" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 481, - "op": "PUSH1", - "gas": 161266, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 483, - "op": "PUSH1", - "gas": 161263, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 485, - "op": "PUSH1", - "gas": 161260, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 487, - "op": "SHL", - "gas": 161257, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 488, - "op": "SUB", - "gas": 161254, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 489, - "op": "MUL", - "gas": 161251, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 490, - "op": "NOT", - "gas": 161246, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 491, - "op": "AND", - "gas": 161243, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 492, - "op": "SWAP1", - "gas": 161240, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x60000000000000005" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 493, - "op": "SSTORE", - "gas": 161237, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x60000000000000005", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 494, - "op": "PUSH1", - "gas": 161137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 496, - "op": "ADD", - "gas": 161134, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x18", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 497, - "op": "PUSH1", - "gas": 161131, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 499, - "op": "DUP2", - "gas": 161128, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 500, - "op": "PUSH1", - "gas": 161125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 502, - "op": "ADD", - "gas": 161122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x20", - "0x20", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 503, - "op": "DIV", - "gas": 161119, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x20", - "0x27" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 504, - "op": "SWAP3", - "gas": 161114, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x140", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 505, - "op": "DUP4", - "gas": 161111, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 506, - "op": "ADD", - "gas": 161108, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 507, - "op": "SWAP3", - "gas": 161105, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x1", - "0x140", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 508, - "op": "PUSH1", - "gas": 161102, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 510, - "op": "SUB", - "gas": 161099, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x20", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 511, - "op": "MUL", - "gas": 161096, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 512, - "op": "PUSH2", - "gas": 161091, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 515, - "op": "JUMP", - "gas": 161088, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 161080, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 161079, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 161076, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 161073, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 161070, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x1", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 516, - "op": "JUMPDEST", - "gas": 161060, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 517, - "op": "POP", - "gas": 161059, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 518, - "op": "JUMPDEST", - "gas": 161057, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 519, - "op": "POP", - "gas": 161056, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 520, - "op": "PUSH2", - "gas": 161054, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 523, - "op": "SWAP3", - "gas": 161051, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 524, - "op": "SWAP2", - "gas": 161048, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 525, - "op": "POP", - "gas": 161045, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 526, - "op": "PUSH2", - "gas": 161043, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 529, - "op": "JUMP", - "gas": 161040, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x216" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 534, - "op": "JUMPDEST", - "gas": 161032, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 535, - "op": "JUMPDEST", - "gas": 161031, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 536, - "op": "DUP1", - "gas": 161030, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 537, - "op": "DUP3", - "gas": 161027, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 538, - "op": "GT", - "gas": 161024, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 539, - "op": "ISZERO", - "gas": 161021, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 540, - "op": "PUSH2", - "gas": 161018, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 543, - "op": "JUMPI", - "gas": 161015, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 530, - "op": "JUMPDEST", - "gas": 161005, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 531, - "op": "POP", - "gas": 161004, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 532, - "op": "SWAP1", - "gas": 161002, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 533, - "op": "JUMP", - "gas": 160999, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 530, - "op": "JUMPDEST", - "gas": 160991, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 531, - "op": "POP", - "gas": 160990, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 532, - "op": "SWAP1", - "gas": 160988, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xef", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 533, - "op": "JUMP", - "gas": 160985, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", - "0xef" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 239, - "op": "JUMPDEST", - "gas": 160977, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 240, - "op": "POP", - "gas": 160976, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 241, - "op": "PUSH1", - "gas": 160974, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 243, - "op": "DUP1", - "gas": 160971, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 244, - "op": "MLOAD", - "gas": 160968, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 245, - "op": "PUSH1", - "gas": 160965, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 247, - "op": "DUP2", - "gas": 160962, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 248, - "op": "ADD", - "gas": 160959, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0xc0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 249, - "op": "DUP3", - "gas": 160956, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 250, - "op": "MSTORE", - "gas": 160953, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x200", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 251, - "op": "PUSH1", - "gas": 160950, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 253, - "op": "DUP1", - "gas": 160947, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 254, - "op": "DUP3", - "gas": 160944, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 255, - "op": "MSTORE", - "gas": 160941, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006" - ] - }, - { - "pc": 256, - "op": "PUSH1", - "gas": 160935, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "DUP3", - "gas": 160932, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 259, - "op": "ADD", - "gas": 160929, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x20", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 260, - "op": "DUP2", - "gas": 160926, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "SWAP1", - "gas": 160923, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x160", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 262, - "op": "MSTORE", - "gas": 160920, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0x0", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 263, - "op": "PUSH8", - "gas": 160914, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 272, - "op": "SWAP3", - "gas": 160911, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x40", - "0x140", - "0x0", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 273, - "op": "DUP3", - "gas": 160908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 274, - "op": "ADD", - "gas": 160905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x40", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 275, - "op": "SWAP3", - "gas": 160902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xde0b6b3a7640000", - "0x140", - "0x0", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 276, - "op": "SWAP1", - "gas": 160899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x180", - "0x140", - "0x0", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 277, - "op": "SWAP3", - "gas": 160896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x180", - "0x140", - "0xde0b6b3a7640000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 278, - "op": "MSTORE", - "gas": 160893, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xde0b6b3a7640000", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 279, - "op": "PUSH1", - "gas": 160887, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 281, - "op": "DUP2", - "gas": 160884, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 282, - "op": "ADD", - "gas": 160881, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x60", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 283, - "op": "DUP3", - "gas": 160878, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 284, - "op": "SWAP1", - "gas": 160875, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1a0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 285, - "op": "MSTORE", - "gas": 160872, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000" - ] - }, - { - "pc": 286, - "op": "PUSH1", - "gas": 160866, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 288, - "op": "DUP2", - "gas": 160863, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 289, - "op": "ADD", - "gas": 160860, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x80", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 290, - "op": "DUP3", - "gas": 160857, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 291, - "op": "SWAP1", - "gas": 160854, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1c0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 292, - "op": "MSTORE", - "gas": 160851, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 293, - "op": "PUSH1", - "gas": 160845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 295, - "op": "DUP2", - "gas": 160842, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 296, - "op": "ADD", - "gas": 160839, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0xa0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 297, - "op": "DUP3", - "gas": 160836, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 298, - "op": "SWAP1", - "gas": 160833, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x1e0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 299, - "op": "MSTORE", - "gas": 160830, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x0", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 300, - "op": "PUSH1", - "gas": 160824, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 302, - "op": "DUP1", - "gas": 160821, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 303, - "op": "SLOAD", - "gas": 160818, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000001", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 304, - "op": "PUSH1", - "gas": 160718, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 306, - "op": "DUP2", - "gas": 160715, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 307, - "op": "ADD", - "gas": 160712, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 308, - "op": "DUP3", - "gas": 160709, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 309, - "op": "SSTORE", - "gas": 160706, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1", - "0x2", - "0x3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 310, - "op": "SWAP3", - "gas": 160606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x0", - "0x140", - "0x3", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 311, - "op": "MSTORE", - "gas": 160603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x1", - "0x140", - "0x3", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 312, - "op": "SWAP1", - "gas": 160600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x1", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 313, - "op": "PUSH2", - "gas": 160597, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 316, - "op": "SWAP1", - "gas": 160594, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x1", - "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 317, - "op": "PUSH1", - "gas": 160591, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 319, - "op": "MUL", - "gas": 160588, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0x1", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 320, - "op": "PUSH32", - "gas": 160583, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 353, - "op": "ADD", - "gas": 160580, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 354, - "op": "DUP3", - "gas": 160577, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 355, - "op": "PUSH1", - "gas": 160574, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 357, - "op": "PUSH2", - "gas": 160571, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 360, - "op": "JUMP", - "gas": 160568, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6", - "0x171" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 369, - "op": "JUMPDEST", - "gas": 160560, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 370, - "op": "PUSH1", - "gas": 160559, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 372, - "op": "DUP4", - "gas": 160556, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6", - "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 373, - "op": "ADD", - "gas": 160553, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6", - "0x2", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 374, - "op": "SWAP2", - "gas": 160550, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 375, - "op": "DUP4", - "gas": 160547, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 376, - "op": "SWAP1", - "gas": 160544, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 377, - "op": "DUP3", - "gas": 160541, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 378, - "op": "ISZERO", - "gas": 160538, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 379, - "op": "PUSH2", - "gas": 160535, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 382, - "op": "JUMPI", - "gas": 160532, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140", - "0x0", - "0x206" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 383, - "op": "SWAP2", - "gas": 160522, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x6", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 384, - "op": "PUSH1", - "gas": 160519, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 386, - "op": "MUL", - "gas": 160516, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x6", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 387, - "op": "DUP3", - "gas": 160511, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 388, - "op": "ADD", - "gas": 160508, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 389, - "op": "PUSH1", - "gas": 160505, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 160502, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 160501, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 160498, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 160495, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x140", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 160492, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 160489, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 160486, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 160476, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 160473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 160470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 160467, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 160464, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 160461, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 160451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 160448, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 158348, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 158345, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 158342, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 158339, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 158336, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 158333, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 158330, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 158325, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 158322, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 158319, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 158316, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 158313, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 158310, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 158307, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 158304, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 158301, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 158298, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 158295, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 158290, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 158287, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 158284, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 158184, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 158182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 158179, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 158176, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x140", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 158173, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 158170, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 158167, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x0", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 158164, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 158161, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 158158, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x20", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 158155, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x20", - "0x8", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 158152, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x20", - "0xf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 158147, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 158144, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 158141, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 158138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 158135, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 158132, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 158129, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 158124, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 158121, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 158113, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 158112, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 158109, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 158106, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x160", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 158103, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 158100, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 158097, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 158087, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 158084, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 158081, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 158078, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 158075, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 158072, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x8", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 158012, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 158009, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 157909, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 157906, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 157903, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 157900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 157897, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 157894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 157891, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 157886, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 157883, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 157880, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 157877, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 157874, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 157871, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 157868, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 157865, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 157862, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 157859, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 157856, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 157851, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 157848, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 157845, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 157745, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 157743, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x160", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 157740, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x160" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 157737, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x160", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 157734, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 157731, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 157728, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x8", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 157725, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 157722, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 157719, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x20", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 157716, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x20", - "0x10", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 157713, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x20", - "0x17" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 157708, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 157705, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 157702, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 157699, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 157696, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 157693, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 157690, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 157685, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 157682, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 157674, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 157673, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 157670, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 157667, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x180", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 157664, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 157661, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 157658, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 157648, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 157645, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 157642, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 157639, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 157636, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 157633, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x10", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 157573, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 157570, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 157470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 157467, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 157464, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 157461, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 157458, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 157455, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 157452, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 157447, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0xffffffffffffffff00000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 157444, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 157441, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x100000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 157438, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 157435, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 157432, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 157429, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 157426, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 157423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 157420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 157417, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0x100000000000000000000000000000000", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 157412, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0", - "0xde0b6b3a764000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 157409, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 157406, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 137406, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0xde0b6b3a7640000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 137404, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x180", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 137401, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x180" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 137398, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x180", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 137395, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 137392, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 137389, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x10", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 137386, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 137383, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 137380, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x20", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 137377, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x20", - "0x18", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 137374, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x20", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 137369, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 137366, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 137363, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 137360, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 137357, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 137354, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 137351, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 137346, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 137343, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 137335, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 137334, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 137331, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 137328, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x1a0", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 137325, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 137322, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 137319, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 137309, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 137306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 137303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 137300, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 137297, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 137294, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x18", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 137234, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 137231, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 137131, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 137128, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 137125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 137122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 137119, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 137116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 137113, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 137108, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 137105, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 137102, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1000000000000000000000000000000000000000000000000", - "0xde0b6b3a764000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 137099, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 137096, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 137093, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 137090, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 137087, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 137084, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 137081, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 137078, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 137073, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 137070, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xde0b6b3a764000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 137067, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0", - "0xde0b6b3a764000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 136967, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 136965, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1a0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 136962, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 136959, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x1a0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 136956, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 136953, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 136950, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x18", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 136947, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 136944, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 136941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 136938, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20", - "0x20", - "0x20", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 136935, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20", - "0x20", - "0x27" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 136930, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x200", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 136927, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 136924, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 136921, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 136918, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 136915, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 136912, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 136907, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 136904, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 136896, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 136895, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 136892, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 136889, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x1c0", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 136886, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 136883, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 136880, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 136870, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 136867, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 136864, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 136861, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 136858, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 136855, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 136845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 136842, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 134742, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 134739, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 134736, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 134733, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 134730, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 134727, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 134724, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 134719, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 134716, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 134713, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 134710, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 134707, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 134704, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 134701, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 134698, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 134695, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 134692, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 134689, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 134684, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 134681, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 134678, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 134578, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 134576, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1c0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 134573, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 134570, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x1c0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 134567, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 134564, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 134561, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x0", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 134558, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 134555, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 134552, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x20", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 134549, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x20", - "0x8", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 134546, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x20", - "0xf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 134541, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 134538, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 134535, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 134532, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0x0", - "0x200", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 134529, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 134526, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 134523, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 134518, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 134515, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 134507, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 134506, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 134503, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 134500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x1e0", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 134497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 134494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 134491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP4", - "gas": 134481, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MLOAD", - "gas": 134478, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "DUP4", - "gas": 134475, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "DUP3", - "gas": 134472, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "PUSH2", - "gas": 134469, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "EXP", - "gas": 134466, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x8", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "DUP2", - "gas": 134406, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SLOAD", - "gas": 134403, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 410, - "op": "DUP2", - "gas": 134303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "PUSH1", - "gas": 134300, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "PUSH1", - "gas": 134297, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "PUSH1", - "gas": 134294, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "SHL", - "gas": 134291, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "SUB", - "gas": 134288, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "MUL", - "gas": 134285, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0x10000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "NOT", - "gas": 134280, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff0000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "AND", - "gas": 134277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 422, - "op": "SWAP1", - "gas": 134274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 423, - "op": "DUP4", - "gas": 134271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "PUSH1", - "gas": 134268, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "PUSH1", - "gas": 134265, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "PUSH1", - "gas": 134262, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SHL", - "gas": 134259, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SUB", - "gas": 134256, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "AND", - "gas": 134253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "MUL", - "gas": 134250, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x10000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 434, - "op": "OR", - "gas": 134245, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "SWAP1", - "gas": 134242, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "SSTORE", - "gas": 134239, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 437, - "op": "POP", - "gas": 134139, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "SWAP3", - "gas": 134137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1e0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH1", - "gas": 134134, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x1e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 441, - "op": "ADD", - "gas": 134131, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x1e0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "SWAP3", - "gas": 134128, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x8", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "PUSH1", - "gas": 134125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "ADD", - "gas": 134122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x8", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "PUSH1", - "gas": 134119, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "DUP2", - "gas": 134116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 449, - "op": "PUSH1", - "gas": 134113, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x20", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "ADD", - "gas": 134110, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x20", - "0x10", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "DIV", - "gas": 134107, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x20", - "0x17" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 453, - "op": "SWAP3", - "gas": 134102, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP4", - "gas": 134099, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "ADD", - "gas": 134096, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "SWAP3", - "gas": 134093, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH1", - "gas": 134090, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "SUB", - "gas": 134087, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "MUL", - "gas": 134084, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 134079, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 134076, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 134068, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "DUP4", - "gas": 134067, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP3", - "gas": 134064, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "GT", - "gas": 134061, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x200", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "ISZERO", - "gas": 134058, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "PUSH2", - "gas": 134055, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "JUMPI", - "gas": 134052, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x1", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 134042, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 134041, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 134038, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 134035, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 134032, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 472, - "op": "DUP3", - "gas": 134022, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 473, - "op": "DUP2", - "gas": 134019, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 474, - "op": "PUSH2", - "gas": 134016, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 477, - "op": "EXP", - "gas": 134013, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x10", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 478, - "op": "DUP2", - "gas": 133953, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 479, - "op": "SLOAD", - "gas": 133950, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x100000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 480, - "op": "SWAP1", - "gas": 133850, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x100000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 481, - "op": "PUSH1", - "gas": 133847, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 483, - "op": "PUSH1", - "gas": 133844, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 485, - "op": "PUSH1", - "gas": 133841, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 487, - "op": "SHL", - "gas": 133838, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 488, - "op": "SUB", - "gas": 133835, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 489, - "op": "MUL", - "gas": 133832, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x100000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 490, - "op": "NOT", - "gas": 133827, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0xffffffffffffffff00000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 491, - "op": "AND", - "gas": 133824, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0xffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 492, - "op": "SWAP1", - "gas": 133821, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 493, - "op": "SSTORE", - "gas": 133818, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 494, - "op": "PUSH1", - "gas": 133718, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 496, - "op": "ADD", - "gas": 133715, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x10", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 497, - "op": "PUSH1", - "gas": 133712, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 499, - "op": "DUP2", - "gas": 133709, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 500, - "op": "PUSH1", - "gas": 133706, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x20", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 502, - "op": "ADD", - "gas": 133703, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x20", - "0x18", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 503, - "op": "DIV", - "gas": 133700, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x20", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 504, - "op": "SWAP3", - "gas": 133695, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 505, - "op": "DUP4", - "gas": 133692, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 506, - "op": "ADD", - "gas": 133689, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 507, - "op": "SWAP3", - "gas": 133686, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 508, - "op": "PUSH1", - "gas": 133683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 510, - "op": "SUB", - "gas": 133680, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 511, - "op": "MUL", - "gas": 133677, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 512, - "op": "PUSH2", - "gas": 133672, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 515, - "op": "JUMP", - "gas": 133669, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 133661, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 133660, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 133657, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 133654, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 133651, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 472, - "op": "DUP3", - "gas": 133641, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 473, - "op": "DUP2", - "gas": 133638, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 474, - "op": "PUSH2", - "gas": 133635, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 477, - "op": "EXP", - "gas": 133632, - "gasCost": 60, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x18", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 478, - "op": "DUP2", - "gas": 133572, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 479, - "op": "SLOAD", - "gas": 133569, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1000000000000000000000000000000000000000000000000", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 480, - "op": "SWAP1", - "gas": 133469, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 481, - "op": "PUSH1", - "gas": 133466, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 483, - "op": "PUSH1", - "gas": 133463, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 485, - "op": "PUSH1", - "gas": 133460, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 487, - "op": "SHL", - "gas": 133457, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 488, - "op": "SUB", - "gas": 133454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 489, - "op": "MUL", - "gas": 133451, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0x1000000000000000000000000000000000000000000000000", - "0xffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 490, - "op": "NOT", - "gas": 133446, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0xffffffffffffffff000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 491, - "op": "AND", - "gas": 133443, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 492, - "op": "SWAP1", - "gas": 133440, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 493, - "op": "SSTORE", - "gas": 133437, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x0", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000002": "0000000000000000000000000000000000000000000000000000000000000058", - "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000002", - "723077b8a1b173adc35e5f0e7e3662fd1208212cb629f9c128551ea7168da722": "0000000000000000000000000000000000000000000000000000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "0000000000000004000000000000000300000000000000020000000000000001", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "0000000000000000000000000000000000000000000000060000000000000005", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d": "00000000000000000de0b6b3a764000000000000000000000000000000000000", - "c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e": "0000000000000000000000000000000000000000000000000000000000000000", - "dc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de3": "0000000000000000000000000000000000000000000000000000000000000064", - "df7ad3c7a2e3db70708daeb487d406b3e889e02ca33162d16b44f6ca5b94f74e": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "e2689cd4a84e23ad2f564004f1c9013e9589d260bde6380aba3ca7e09e4df40c": "000000000000000000000000000000000000000000000000000000000000002d" - } - }, - { - "pc": 494, - "op": "PUSH1", - "gas": 133337, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 496, - "op": "ADD", - "gas": 133334, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x18", - "0x8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 497, - "op": "PUSH1", - "gas": 133331, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 499, - "op": "DUP2", - "gas": 133328, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 500, - "op": "PUSH1", - "gas": 133325, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 502, - "op": "ADD", - "gas": 133322, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x20", - "0x20", - "0x7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 503, - "op": "DIV", - "gas": 133319, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x20", - "0x27" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 504, - "op": "SWAP3", - "gas": 133314, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x200", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 505, - "op": "DUP4", - "gas": 133311, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 506, - "op": "ADD", - "gas": 133308, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 507, - "op": "SWAP3", - "gas": 133305, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x1", - "0x200", - "0x20", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 508, - "op": "PUSH1", - "gas": 133302, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 510, - "op": "SUB", - "gas": 133299, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x20", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 511, - "op": "MUL", - "gas": 133296, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 512, - "op": "PUSH2", - "gas": 133291, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 515, - "op": "JUMP", - "gas": 133288, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 133280, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 466, - "op": "DUP1", - "gas": 133279, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 467, - "op": "ISZERO", - "gas": 133276, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 468, - "op": "PUSH2", - "gas": 133273, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 471, - "op": "JUMPI", - "gas": 133270, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0", - "0x1", - "0x204" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 516, - "op": "JUMPDEST", - "gas": 133260, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 517, - "op": "POP", - "gas": 133259, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 518, - "op": "JUMPDEST", - "gas": 133257, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 519, - "op": "POP", - "gas": 133256, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 520, - "op": "PUSH2", - "gas": 133254, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 523, - "op": "SWAP3", - "gas": 133251, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 524, - "op": "SWAP2", - "gas": 133248, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0x200", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 525, - "op": "POP", - "gas": 133245, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x200" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 526, - "op": "PUSH2", - "gas": 133243, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 529, - "op": "JUMP", - "gas": 133240, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x216" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 534, - "op": "JUMPDEST", - "gas": 133232, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 535, - "op": "JUMPDEST", - "gas": 133231, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 536, - "op": "DUP1", - "gas": 133230, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 537, - "op": "DUP3", - "gas": 133227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 538, - "op": "GT", - "gas": 133224, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 539, - "op": "ISZERO", - "gas": 133221, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 540, - "op": "PUSH2", - "gas": 133218, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 543, - "op": "JUMPI", - "gas": 133215, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x1", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 530, - "op": "JUMPDEST", - "gas": 133205, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 531, - "op": "POP", - "gas": 133204, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 532, - "op": "SWAP1", - "gas": 133202, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x212", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 533, - "op": "JUMP", - "gas": 133199, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f", - "0x212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 530, - "op": "JUMPDEST", - "gas": 133191, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 531, - "op": "POP", - "gas": 133190, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 532, - "op": "SWAP1", - "gas": 133188, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0x169", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 533, - "op": "JUMP", - "gas": 133185, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d", - "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 361, - "op": "JUMPDEST", - "gas": 133177, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 362, - "op": "POP", - "gas": 133176, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140", - "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 363, - "op": "POP", - "gas": 133174, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x140" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 364, - "op": "POP", - "gas": 133172, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 365, - "op": "PUSH2", - "gas": 133170, - "gasCost": 3, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 368, - "op": "JUMP", - "gas": 133167, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 555, - "op": "JUMPDEST", - "gas": 133159, - "gasCost": 1, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 556, - "op": "PUSH1", - "gas": 133158, - "gasCost": 3, - "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 558, - "op": "DUP1", - "gas": 133155, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 559, - "op": "PUSH2", - "gas": 133152, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5", - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 562, - "op": "PUSH1", - "gas": 133149, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5", - "0xc5", - "0x239" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 564, - "op": "CODECOPY", - "gas": 133146, - "gasCost": 24, - "depth": 1, - "stack": [ - "0xc5", - "0xc5", - "0x239", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000200", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 565, - "op": "PUSH1", - "gas": 133122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5" - ], - "memory": [ - "6080604052348015600f57600080fd5b506004361060325760003560e01c8063", - "12ae639714603757806332e43a111460b6575b600080fd5b60b660107fada501", - "3122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001", - "602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc", - "3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca3", - "9002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343", - "000815000a000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 567, - "op": "RETURN", - "gas": 133119, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xc5", - "0x0" - ], - "memory": [ - "6080604052348015600f57600080fd5b506004361060325760003560e01c8063", - "12ae639714603757806332e43a111460b6575b600080fd5b60b660107fada501", - "3122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d556001", - "602052602a7f755311b9e2cee471a91b161ccc5deed933d844b5af2b885543cc", - "3c04eb64098355601160005260537fc8d233a0ebef7c9a17d2b0b17eea62cca3", - "9002a128ccf419119b4a1a1f1e7428556064600255565b00fea164736f6c6343", - "000815000a000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000006", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000de0b6b3a7640000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - } - ] - }, - "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "tx_id": "0xe8217383e8dd9c1f21f4a299f478b476e7dbf7ae1ac6bff0d532fc22cd331223" -} \ No newline at end of file diff --git a/tests/data/trace_StringMapping.json b/tests/data/trace_StringMapping.json deleted file mode 100644 index a3172ee3..00000000 --- a/tests/data/trace_StringMapping.json +++ /dev/null @@ -1,14775 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x5f1cb", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e6100d5565b6101c86000604051610076906561626331323360d01b815260060190565b908152602001604051809103902081905550604051806040016040528060018152602001606360f81b81525060016040516100b890603160f91b815260010190565b908152602001604051809103902090816100d2919061022a565b50565b6102a660006040516100f3906561626331323360d01b815260060190565b908152604051908190036020018120919091557312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b815260069060009060140190815260405190819003602001812091909155604160f81b8152606490600090600101908152604051908190036020018120919091556a32b9b1b0b832ba3434b99160a91b8152606490600090600b0190815260405190819003602001902055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806101b557607f821691505b6020821081036101d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561022557600081815260208120601f850160051c810160208610156102025750805b601f850160051c820191505b818110156102215782815560010161020e565b5050505b505050565b815167ffffffffffffffff8111156102445761024461018b565b6102588161025284546101a1565b846101db565b602080601f83116001811461028d57600084156102755750858301515b600019600386901b1c1916600185901b178555610221565b600085815260208120601f198616915b828110156102bc5788860151825594840194600190910190840161029d565b50858210156102da5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 310429, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 310426, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 310423, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 310411, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 310409, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 310406, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 310403, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 310400, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 310390, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 310389, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 310387, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 310384, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 20, - "stack": [ - "0x5" - ] - }, - { - "depth": 1, - "gas": 310381, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x5", - "0x0" - ] - }, - { - "depth": 1, - "gas": 310378, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 24, - "stack": [ - "0x5", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 310375, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 25, - "stack": [ - "0x5", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310372, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 28, - "stack": [ - "0x5", - "0x0", - "0x80", - "0x45" - ] - }, - { - "depth": 1, - "gas": 310369, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", - "pc": 29, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310366, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 62, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x80", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 310363, - "gasCost": 9, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 63, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x80", - "0x48656c6c6f207468697320697320612074657374000000000000000000000000", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310354, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", - "pc": 64, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310351, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", - "pc": 66, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x80", - "0x14" - ] - }, - { - "depth": 1, - "gas": 310348, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", - "pc": 67, - "stack": [ - "0x5", - "0x0", - "0x45", - "0x94" - ] - }, - { - "depth": 1, - "gas": 310345, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMP", - "pc": 68, - "stack": [ - "0x5", - "0x0", - "0x94", - "0x45" - ] - }, - { - "depth": 1, - "gas": 310337, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 69, - "stack": [ - "0x5", - "0x0", - "0x94" - ] - }, - { - "depth": 1, - "gas": 310336, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", - "pc": 70, - "stack": [ - "0x5", - "0x0", - "0x94" - ] - }, - { - "depth": 1, - "gas": 310333, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", - "pc": 71, - "stack": [ - "0x5", - "0x94", - "0x0" - ] - }, - { - "depth": 1, - "gas": 310330, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 72, - "stack": [ - "0x5", - "0x94", - "0x0", - "0x94" - ] - }, - { - "depth": 1, - "gas": 310324, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 73, - "stack": [ - "0x5", - "0x94" - ] - }, - { - "depth": 1, - "gas": 310321, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 75, - "stack": [ - "0x5", - "0x94", - "0x20" - ] - }, - { - "depth": 1, - "gas": 310318, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 76, - "stack": [ - "0x5", - "0xb4" - ] - }, - { - "depth": 1, - "gas": 310315, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 78, - "stack": [ - "0x5", - "0xb4", - "0x40" - ] - }, - { - "depth": 1, - "gas": 310312, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 79, - "stack": [ - "0x5", - "0xb4", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310309, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 80, - "stack": [ - "0x5", - "0xb4", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310306, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 81, - "stack": [ - "0x5", - "0x80", - "0x80", - "0xb4" - ] - }, - { - "depth": 1, - "gas": 310303, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 82, - "stack": [ - "0x5", - "0x80", - "0x34" - ] - }, - { - "depth": 1, - "gas": 310300, - "gasCost": 42, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 83, - "stack": [ - "0x5", - "0x34", - "0x80" - ] - }, - { - "depth": 1, - "gas": 310258, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 84, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 310255, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 85, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", - "0x5" - ] - }, - { - "depth": 1, - "gas": 310252, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 86, - "stack": [ - "0x5", - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 288152, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 87, - "stack": [ - "0x5" - ] - }, - { - "depth": 1, - "gas": 288150, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 88, - "stack": [] - }, - { - "depth": 1, - "gas": 288147, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 90, - "stack": [ - "0x2a" - ] - }, - { - "depth": 1, - "gas": 288144, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 92, - "stack": [ - "0x2a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 288141, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 94, - "stack": [ - "0x2a", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 288138, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 95, - "stack": [ - "0x2a", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288135, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 98, - "stack": [ - "0x2a", - "0x0", - "0x80", - "0xcc" - ] - }, - { - "depth": 1, - "gas": 288132, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 99, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288129, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 132, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 288126, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 133, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288123, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 134, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288120, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 167, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 288117, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 169, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x20" - ] - }, - { - "depth": 1, - "gas": 288114, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 170, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x20", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288111, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 171, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 288108, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH18", - "pc": 172, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288105, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", - "pc": 191, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e67" - ] - }, - { - "depth": 1, - "gas": 288102, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "SHL", - "pc": 193, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e67", - "0x70" - ] - }, - { - "depth": 1, - "gas": 288099, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", - "pc": 194, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 288096, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP3", - "pc": 196, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0x40" - ] - }, - { - "depth": 1, - "gas": 288093, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", - "pc": 197, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0x40", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288090, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 198, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 288084, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 199, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288081, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", - "pc": 201, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0x80", - "0x52" - ] - }, - { - "depth": 1, - "gas": 288078, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 202, - "stack": [ - "0x2a", - "0x0", - "0xcc", - "0xd2" - ] - }, - { - "depth": 1, - "gas": 288075, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMP", - "pc": 203, - "stack": [ - "0x2a", - "0x0", - "0xd2", - "0xcc" - ] - }, - { - "depth": 1, - "gas": 288067, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 204, - "stack": [ - "0x2a", - "0x0", - "0xd2" - ] - }, - { - "depth": 1, - "gas": 288066, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 205, - "stack": [ - "0x2a", - "0x0", - "0xd2" - ] - }, - { - "depth": 1, - "gas": 288063, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", - "pc": 206, - "stack": [ - "0x2a", - "0xd2", - "0x0" - ] - }, - { - "depth": 1, - "gas": 288060, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 207, - "stack": [ - "0x2a", - "0xd2", - "0x0", - "0xd2" - ] - }, - { - "depth": 1, - "gas": 288054, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 208, - "stack": [ - "0x2a", - "0xd2" - ] - }, - { - "depth": 1, - "gas": 288051, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 210, - "stack": [ - "0x2a", - "0xd2", - "0x20" - ] - }, - { - "depth": 1, - "gas": 288048, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 211, - "stack": [ - "0x2a", - "0xf2" - ] - }, - { - "depth": 1, - "gas": 288045, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 213, - "stack": [ - "0x2a", - "0xf2", - "0x40" - ] - }, - { - "depth": 1, - "gas": 288042, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 214, - "stack": [ - "0x2a", - "0xf2", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288039, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 215, - "stack": [ - "0x2a", - "0xf2", - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 288036, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 216, - "stack": [ - "0x2a", - "0x80", - "0x80", - "0xf2" - ] - }, - { - "depth": 1, - "gas": 288033, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 217, - "stack": [ - "0x2a", - "0x80", - "0x72" - ] - }, - { - "depth": 1, - "gas": 288030, - "gasCost": 54, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 218, - "stack": [ - "0x2a", - "0x72", - "0x80" - ] - }, - { - "depth": 1, - "gas": 287976, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 219, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 287973, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 220, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", - "0x2a" - ] - }, - { - "depth": 1, - "gas": 287970, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 221, - "stack": [ - "0x2a", - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 265870, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 222, - "stack": [ - "0x2a" - ] - }, - { - "depth": 1, - "gas": 265868, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 223, - "stack": [] - }, - { - "depth": 1, - "gas": 265865, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 225, - "stack": [ - "0x40" - ] - }, - { - "depth": 1, - "gas": 265862, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 226, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 265859, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 227, - "stack": [ - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265856, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 229, - "stack": [ - "0x80", - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 265853, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 230, - "stack": [ - "0x80", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265850, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 232, - "stack": [ - "0x80", - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 265847, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 233, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 265844, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 234, - "stack": [ - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265841, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 236, - "stack": [ - "0x80", - "0x80", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265838, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 237, - "stack": [ - "0x80", - "0x80", - "0xe", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265835, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 238, - "stack": [ - "0x80", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265832, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 240, - "stack": [ - "0x80", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 265829, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH14", - "pc": 241, - "stack": [ - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 265826, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 256, - "stack": [ - "0x80", - "0xa0", - "0x612073686f727420737472696e67" - ] - }, - { - "depth": 1, - "gas": 265823, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 258, - "stack": [ - "0x80", - "0xa0", - "0x612073686f727420737472696e67", - "0x90" - ] - }, - { - "depth": 1, - "gas": 265820, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 259, - "stack": [ - "0x80", - "0xa0", - "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 265817, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 260, - "stack": [ - "0x80", - "0xa0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 265814, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 261, - "stack": [ - "0x80", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 265812, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 262, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 265809, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 264, - "stack": [ - "0x80", - "0x1" - ] - }, - { - "depth": 1, - "gas": 265806, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 266, - "stack": [ - "0x80", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 265803, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 267, - "stack": [ - "0x80", - "0x1", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265800, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 270, - "stack": [ - "0x80", - "0x1", - "0xc0", - "0x11d" - ] - }, - { - "depth": 1, - "gas": 265797, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH3", - "pc": 271, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265794, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 275, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0", - "0x616263" - ] - }, - { - "depth": 1, - "gas": 265791, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 277, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0", - "0x616263", - "0xe8" - ] - }, - { - "depth": 1, - "gas": 265788, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 278, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0", - "0x6162630000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 265785, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 279, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0", - "0x6162630000000000000000000000000000000000000000000000000000000000", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265782, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 280, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265779, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 282, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc0", - "0x3" - ] - }, - { - "depth": 1, - "gas": 265776, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 283, - "stack": [ - "0x80", - "0x1", - "0x11d", - "0xc3" - ] - }, - { - "depth": 1, - "gas": 265773, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 284, - "stack": [ - "0x80", - "0x1", - "0xc3", - "0x11d" - ] - }, - { - "depth": 1, - "gas": 265765, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 285, - "stack": [ - "0x80", - "0x1", - "0xc3" - ] - }, - { - "depth": 1, - "gas": 265764, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 286, - "stack": [ - "0x80", - "0x1", - "0xc3" - ] - }, - { - "depth": 1, - "gas": 265761, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 287, - "stack": [ - "0x80", - "0xc3", - "0x1" - ] - }, - { - "depth": 1, - "gas": 265758, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 288, - "stack": [ - "0x80", - "0xc3", - "0x1", - "0xc3" - ] - }, - { - "depth": 1, - "gas": 265755, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 289, - "stack": [ - "0x80", - "0xc3" - ] - }, - { - "depth": 1, - "gas": 265752, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 291, - "stack": [ - "0x80", - "0xc3", - "0x20" - ] - }, - { - "depth": 1, - "gas": 265749, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 292, - "stack": [ - "0x80", - "0xe3" - ] - }, - { - "depth": 1, - "gas": 265746, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 294, - "stack": [ - "0x80", - "0xe3", - "0x40" - ] - }, - { - "depth": 1, - "gas": 265743, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 295, - "stack": [ - "0x80", - "0xe3", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265740, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 296, - "stack": [ - "0x80", - "0xe3", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265737, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 297, - "stack": [ - "0x80", - "0xc0", - "0xc0", - "0xe3" - ] - }, - { - "depth": 1, - "gas": 265734, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 298, - "stack": [ - "0x80", - "0xc0", - "0x23" - ] - }, - { - "depth": 1, - "gas": 265731, - "gasCost": 42, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 299, - "stack": [ - "0x80", - "0x23", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 265689, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 300, - "stack": [ - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265686, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 301, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265683, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 302, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265680, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 305, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137" - ] - }, - { - "depth": 1, - "gas": 265677, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 306, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265674, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 307, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265671, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 310, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x273" - ] - }, - { - "depth": 1, - "gas": 265663, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 627, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265662, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 628, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265659, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 629, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80" - ] - }, - { - "depth": 1, - "gas": 265656, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 630, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265653, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 632, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1" - ] - }, - { - "depth": 1, - "gas": 265650, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 634, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 265647, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 636, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 265644, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 637, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 265641, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 638, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 265638, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 639, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0xffffffffffffffff", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265635, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 640, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 265632, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 641, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1" - ] - }, - { - "depth": 1, - "gas": 265629, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 644, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x1", - "0x28c" - ] - }, - { - "depth": 1, - "gas": 265619, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 652, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265618, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 653, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265615, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 656, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 265612, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 657, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe" - ] - }, - { - "depth": 1, - "gas": 265609, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 660, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 265606, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 661, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263506, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 662, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263503, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 665, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x1ea" - ] - }, - { - "depth": 1, - "gas": 263495, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 490, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263494, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 491, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263491, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 493, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263488, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 494, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263485, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 495, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263482, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 496, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263479, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 497, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263476, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 498, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263473, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 499, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263470, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 500, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263467, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 503, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1fe" - ] - }, - { - "depth": 1, - "gas": 263457, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 504, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263454, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 506, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f" - ] - }, - { - "depth": 1, - "gas": 263451, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 507, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263448, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 508, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263445, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 509, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263443, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 510, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263442, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 511, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263439, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 513, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 263436, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 514, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 515, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 516, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 517, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263424, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 520, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x21e" - ] - }, - { - "depth": 1, - "gas": 263414, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 542, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263413, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 543, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263411, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 544, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x29a", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263408, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 545, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 263405, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 546, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263403, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 547, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 263395, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 666, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263394, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 667, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263391, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 668, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263388, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 671, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x224" - ] - }, - { - "depth": 1, - "gas": 263380, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 548, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263379, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 549, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263376, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 551, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 263373, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 552, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x1f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263370, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 553, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263367, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 554, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263364, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 557, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x1", - "0x26e" - ] - }, - { - "depth": 1, - "gas": 263354, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 622, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263353, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 623, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263351, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 624, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263349, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 625, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263347, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 626, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 263339, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 672, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263338, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 673, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263335, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 675, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20" - ] - }, - { - "depth": 1, - "gas": 263332, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 676, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 263329, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 678, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 263326, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 679, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x1f", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263323, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 680, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263320, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 682, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263317, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "EQ", - "pc": 683, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263314, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 684, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263311, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 687, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0", - "0x2d5" - ] - }, - { - "depth": 1, - "gas": 263301, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 688, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263298, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 690, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263295, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 691, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263292, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 692, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263289, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 695, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0", - "0x0", - "0x2bd" - ] - }, - { - "depth": 1, - "gas": 263279, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 696, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263277, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 697, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263274, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 698, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 263271, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 699, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 263268, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 700, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 263265, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 701, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263264, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 702, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263261, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 704, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 263258, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 705, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263255, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 707, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3" - ] - }, - { - "depth": 1, - "gas": 263252, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 708, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263249, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 709, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0xe", - "0x3" - ] - }, - { - "depth": 1, - "gas": 263246, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 710, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x70" - ] - }, - { - "depth": 1, - "gas": 263243, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 711, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263240, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 712, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffff000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263237, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 713, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263234, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 715, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263231, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 716, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0x1", - "0xe" - ] - }, - { - "depth": 1, - "gas": 263228, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 717, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0xe", - "0x1" - ] - }, - { - "depth": 1, - "gas": 263225, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 718, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e67000000000000000000000000000000000000", - "0x1c" - ] - }, - { - "depth": 1, - "gas": 263222, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 719, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e6700000000000000000000000000000000001c" - ] - }, - { - "depth": 1, - "gas": 263219, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 720, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x612073686f727420737472696e6700000000000000000000000000000000001c", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243219, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 721, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 243216, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 724, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0", - "0x26a" - ] - }, - { - "depth": 1, - "gas": 243208, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 618, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 243207, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 619, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 243205, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 620, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 243203, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 621, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe", - "0x20" - ] - }, - { - "depth": 1, - "gas": 243201, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 622, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 243200, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 623, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0xe" - ] - }, - { - "depth": 1, - "gas": 243198, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 624, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243196, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 625, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137", - "0x80" - ] - }, - { - "depth": 1, - "gas": 243194, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 626, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137" - ] - }, - { - "depth": 1, - "gas": 243186, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 311, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243185, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 312, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243183, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 313, - "stack": [] - }, - { - "depth": 1, - "gas": 243180, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 315, - "stack": [ - "0x40" - ] - }, - { - "depth": 1, - "gas": 243177, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 316, - "stack": [ - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243174, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 317, - "stack": [ - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243171, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 319, - "stack": [ - "0xc0", - "0xc0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 243168, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 320, - "stack": [ - "0xc0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243165, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 322, - "stack": [ - "0xc0", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 243162, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 323, - "stack": [ - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243159, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 324, - "stack": [ - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243156, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 326, - "stack": [ - "0xc0", - "0xc0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 243153, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 327, - "stack": [ - "0xc0", - "0xc0", - "0x53", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243150, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 328, - "stack": [ - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243147, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 330, - "stack": [ - "0xc0", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 243144, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 331, - "stack": [ - "0xc0", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 243141, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 334, - "stack": [ - "0xc0", - "0xe0", - "0x638" - ] - }, - { - "depth": 1, - "gas": 243138, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 336, - "stack": [ - "0xc0", - "0xe0", - "0x638", - "0x53" - ] - }, - { - "depth": 1, - "gas": 243135, - "gasCost": 18, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 337, - "stack": [ - "0xc0", - "0x53", - "0x638", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 243117, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "PUSH1", - "pc": 338, - "stack": [ - "0xc0" - ] - }, - { - "depth": 1, - "gas": 243114, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "DUP1", - "pc": 340, - "stack": [ - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 243111, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "MLOAD", - "pc": 341, - "stack": [ - "0xc0", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 243108, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "PUSH1", - "pc": 342, - "stack": [ - "0xc0", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243105, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "PUSH1", - "pc": 344, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x61" - ] - }, - { - "depth": 1, - "gas": 243102, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "SHL", - "pc": 346, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x61", - "0xf8" - ] - }, - { - "depth": 1, - "gas": 243099, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "DUP2", - "pc": 347, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x6100000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 243096, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 348, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x6100000000000000000000000000000000000000000000000000000000000000", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243090, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 349, - "stack": [ - "0xc0", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243087, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 351, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1" - ] - }, - { - "depth": 1, - "gas": 243084, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 352, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 243081, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 353, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x1", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243078, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 354, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x141" - ] - }, - { - "depth": 1, - "gas": 243072, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 355, - "stack": [ - "0xc0", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243069, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 356, - "stack": [ - "0xc0", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 243066, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 357, - "stack": [ - "0xc0", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243063, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 358, - "stack": [ - "0xc0", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243060, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 359, - "stack": [ - "0xc0", - "0x140", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243057, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 360, - "stack": [ - "0xc0", - "0x140", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243054, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 361, - "stack": [ - "0xc0", - "0x140", - "0x0" - ] - }, - { - "depth": 1, - "gas": 243051, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 363, - "stack": [ - "0xc0", - "0x140", - "0x0", - "0x21" - ] - }, - { - "depth": 1, - "gas": 243048, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 364, - "stack": [ - "0xc0", - "0x140", - "0x21" - ] - }, - { - "depth": 1, - "gas": 243045, - "gasCost": 42, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 365, - "stack": [ - "0xc0", - "0x21", - "0x140" - ] - }, - { - "depth": 1, - "gas": 243003, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 366, - "stack": [ - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 243000, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 367, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 242997, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 370, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0", - "0x178" - ] - }, - { - "depth": 1, - "gas": 242994, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 371, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 242991, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 372, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242988, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 375, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x273" - ] - }, - { - "depth": 1, - "gas": 242980, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 627, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242979, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 628, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242976, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 629, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 242973, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 630, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242970, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 632, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 242967, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 634, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 242964, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 636, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 242961, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 637, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 242958, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 638, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 242955, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 639, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0xffffffffffffffff", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242952, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 640, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 242949, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 641, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 242946, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 644, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1", - "0x28c" - ] - }, - { - "depth": 1, - "gas": 242936, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 652, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242935, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 653, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242932, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 656, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 242929, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 657, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242926, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 660, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 242923, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 661, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240823, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 662, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240820, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 665, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x1ea" - ] - }, - { - "depth": 1, - "gas": 240812, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 490, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240811, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 491, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240808, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 493, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240805, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 494, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240802, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 495, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240799, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 496, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240796, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 497, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240793, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 498, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240790, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 499, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240787, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 500, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240784, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 503, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1fe" - ] - }, - { - "depth": 1, - "gas": 240774, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 504, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240771, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 506, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f" - ] - }, - { - "depth": 1, - "gas": 240768, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 507, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240765, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 508, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240762, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 509, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240760, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 510, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240759, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 511, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240756, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 513, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240753, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 514, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240750, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 515, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240747, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 516, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240744, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 517, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 240741, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 520, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x21e" - ] - }, - { - "depth": 1, - "gas": 240731, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 542, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240730, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 543, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240728, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 544, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240725, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 545, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 240722, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 546, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240720, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 547, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 240712, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 666, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240711, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 667, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240708, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 668, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240705, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 671, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x224" - ] - }, - { - "depth": 1, - "gas": 240697, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 548, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240696, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 549, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240693, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 551, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240690, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 552, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240687, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 553, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240684, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 554, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240681, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 557, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0x26e" - ] - }, - { - "depth": 1, - "gas": 240671, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 622, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240670, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 623, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240668, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 624, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240666, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 625, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240664, - "gasCost": 8, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 626, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 240656, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 672, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240655, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 673, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240652, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 675, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240649, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 676, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240646, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 678, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240643, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 679, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1f", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240640, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 680, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240637, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 682, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240634, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EQ", - "pc": 683, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240631, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 684, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240628, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 687, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x1", - "0x2d5" - ] - }, - { - "depth": 1, - "gas": 240618, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 725, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240617, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 726, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240614, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 728, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240611, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 729, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240608, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 730, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240605, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 731, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240602, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 733, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240599, - "gasCost": 36, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 734, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240563, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 735, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 240560, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 737, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240557, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 738, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 240554, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 739, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240551, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 740, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x40" - ] - }, - { - "depth": 1, - "gas": 240548, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240547, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240544, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 240541, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240538, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240535, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240532, - "gasCost": 10, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x0", - "0x304" - ] - }, - { - "depth": 1, - "gas": 240522, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 750, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240519, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 751, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 240516, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 752, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xc0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240513, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 753, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 240510, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 754, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 240507, - "gasCost": 22100, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 755, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 218407, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 756, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218404, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 757, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x0", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218401, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 758, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x0", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218398, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 759, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x0", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x40" - ] - }, - { - "depth": 1, - "gas": 218395, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 760, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218392, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 762, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 218389, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 763, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218386, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 764, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x0", - "0x1", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 218383, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 765, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 218380, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 766, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218377, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 767, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218374, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 768, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218371, - "gasCost": 8, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 771, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x2e5" - ] - }, - { - "depth": 1, - "gas": 218363, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218362, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218359, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 218356, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x40", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218353, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 218350, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218347, - "gasCost": 10, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x0", - "0x304" - ] - }, - { - "depth": 1, - "gas": 218337, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 750, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218334, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 751, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 218331, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 752, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 218328, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 753, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x100" - ] - }, - { - "depth": 1, - "gas": 218325, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 754, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 218322, - "gasCost": 22100, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 755, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 196222, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 756, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x40", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196219, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 757, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196216, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 758, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x40", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196213, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 759, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x20", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x60" - ] - }, - { - "depth": 1, - "gas": 196210, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 760, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196207, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 762, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 196204, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 763, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x1", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196201, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 764, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x20", - "0x1", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 196198, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 765, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x20", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196195, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 766, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196192, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 767, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196189, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 768, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196186, - "gasCost": 8, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 771, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x2e5" - ] - }, - { - "depth": 1, - "gas": 196178, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196177, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196174, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196171, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196168, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196165, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x1" - ] - }, - { - "depth": 1, - "gas": 196162, - "gasCost": 10, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x1", - "0x304" - ] - }, - { - "depth": 1, - "gas": 196152, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 772, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196151, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 773, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196149, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 774, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196146, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 775, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x53" - ] - }, - { - "depth": 1, - "gas": 196143, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 776, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x53", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196140, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 777, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x1" - ] - }, - { - "depth": 1, - "gas": 196137, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 778, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196134, - "gasCost": 10, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 781, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x0", - "0x322" - ] - }, - { - "depth": 1, - "gas": 196124, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 782, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196121, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 783, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 196118, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 784, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0xc0", - "0x60" - ] - }, - { - "depth": 1, - "gas": 196115, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 785, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x120" - ] - }, - { - "depth": 1, - "gas": 196112, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 786, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 196109, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 788, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196106, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 789, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 196103, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 791, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3" - ] - }, - { - "depth": 1, - "gas": 196100, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 792, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3", - "0x53" - ] - }, - { - "depth": 1, - "gas": 196097, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 793, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x53", - "0x3" - ] - }, - { - "depth": 1, - "gas": 196094, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 794, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x298" - ] - }, - { - "depth": 1, - "gas": 196091, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 796, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x298", - "0xf8" - ] - }, - { - "depth": 1, - "gas": 196088, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 797, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x98" - ] - }, - { - "depth": 1, - "gas": 196085, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 798, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 196082, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 799, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffff00000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 196079, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 800, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 196076, - "gasCost": 22100, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 801, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 173976, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 802, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 173975, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 803, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 173973, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 804, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 173971, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 805, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 173969, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 806, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20" - ] - }, - { - "depth": 1, - "gas": 173967, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 807, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60" - ] - }, - { - "depth": 1, - "gas": 173965, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 808, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 173962, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 810, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 173959, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 811, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0x53" - ] - }, - { - "depth": 1, - "gas": 173956, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 812, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 173953, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 813, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0xa6" - ] - }, - { - "depth": 1, - "gas": 173950, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 814, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xa7" - ] - }, - { - "depth": 1, - "gas": 173947, - "gasCost": 20000, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 815, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xa7", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 153947, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 816, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 153945, - "gasCost": 8, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 817, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178" - ] - }, - { - "depth": 1, - "gas": 153937, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 376, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 153936, - "gasCost": 2, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 377, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 153934, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 378, - "stack": [] - }, - { - "depth": 1, - "gas": 153931, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 381, - "stack": [ - "0x3e8" - ] - }, - { - "depth": 1, - "gas": 153928, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 414, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4" - ] - }, - { - "depth": 1, - "gas": 153925, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 416, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x40" - ] - }, - { - "depth": 1, - "gas": 153922, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 417, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153919, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 420, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x140", - "0x1c7" - ] - }, - { - "depth": 1, - "gas": 153916, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 421, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153913, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 423, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153910, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 424, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153907, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 425, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x20", - "0x20", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153904, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 426, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153901, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 428, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x20", - "0x9" - ] - }, - { - "depth": 1, - "gas": 153898, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 429, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x9", - "0x20" - ] - }, - { - "depth": 1, - "gas": 153895, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 430, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x9", - "0x20", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153892, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 431, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x9", - "0x160" - ] - }, - { - "depth": 1, - "gas": 153889, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "PUSH9", - "pc": 432, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153886, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "PUSH1", - "pc": 442, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e7444617461" - ] - }, - { - "depth": 1, - "gas": 153883, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "SHL", - "pc": 444, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e7444617461", - "0xb8" - ] - }, - { - "depth": 1, - "gas": 153880, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "PUSH1", - "pc": 445, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e74446174610000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 153877, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "DUP3", - "pc": 447, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e74446174610000000000000000000000000000000000000000000000", - "0x40" - ] - }, - { - "depth": 1, - "gas": 153874, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], - "op": "ADD", - "pc": 448, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e74446174610000000000000000000000000000000000000000000000", - "0x40", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153871, - "gasCost": 6, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 449, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x4576656e74446174610000000000000000000000000000000000000000000000", - "0x180" - ] - }, - { - "depth": 1, - "gas": 153865, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 450, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153862, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 452, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x60" - ] - }, - { - "depth": 1, - "gas": 153859, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 453, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153856, - "gasCost": 8, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 454, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0", - "0x1c7" - ] - }, - { - "depth": 1, - "gas": 153848, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 455, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153847, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 456, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153844, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 458, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 153841, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 459, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153838, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 460, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1a0", - "0x140", - "0x140" - ] - }, - { - "depth": 1, - "gas": 153835, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 461, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x140", - "0x140", - "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153832, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 462, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x140", - "0x60" - ] - }, - { - "depth": 1, - "gas": 153829, - "gasCost": 1893, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "LOG2", - "pc": 463, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x60", - "0x140" - ] - }, - { - "depth": 1, - "gas": 151936, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 464, - "stack": [] - }, - { - "depth": 1, - "gas": 151933, - "gasCost": 8, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 467, - "stack": [ - "0x332" - ] - }, - { - "depth": 1, - "gas": 151925, - "gasCost": 1, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 818, - "stack": [] - }, - { - "depth": 1, - "gas": 151924, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 819, - "stack": [] - }, - { - "depth": 1, - "gas": 151921, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 822, - "stack": [ - "0x2f7" - ] - }, - { - "depth": 1, - "gas": 151918, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 823, - "stack": [ - "0x2f7", - "0x2f7" - ] - }, - { - "depth": 1, - "gas": 151915, - "gasCost": 3, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 826, - "stack": [ - "0x2f7", - "0x2f7", - "0x341" - ] - }, - { - "depth": 1, - "gas": 151912, - "gasCost": 109, - "memory": [ - "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", - "pc": 828, - "stack": [ - "0x2f7", - "0x2f7", - "0x341", - "0x0" - ] - }, - { - "depth": 1, - "gas": 151803, - "gasCost": 3, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e6100d5565b6101c860006040", - "51610076906561626331323360d01b815260060190565b908152602001604051", - "809103902081905550604051806040016040528060018152602001606360f81b", - "81525060016040516100b890603160f91b815260010190565b90815260200160", - "4051809103902090816100d2919061022a565b50565b6102a660006040516100", - "f3906561626331323360d01b815260060190565b908152604051908190036020", - "018120919091557312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b81", - "5260069060009060140190815260405190819003602001812091909155604160", - "f81b815260649060009060010190815260405190819003602001812091909155", - "6a32b9b1b0b832ba3434b99160a91b8152606490600090600b01908152604051", - "90819003602001902055565b634e487b7160e01b600052604160045260246000", - "fd5b600181811c908216806101b557607f821691505b6020821081036101d557", - "634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211", - "1561022557600081815260208120601f850160051c8101602086101561020257", - "50805b601f850160051c820191505b818110156102215782815560010161020e", - "565b5050505b505050565b815167ffffffffffffffff81111561024457610244", - "61018b565b6102588161025284546101a1565b846101db565b602080601f8311", - "6001811461028d57600084156102755750858301515b600019600386901b1c19", - "16600185901b178555610221565b600085815260208120601f198616915b8281", - "10156102bc5788860151825594840194600190910190840161029d565b508582", - "10156102da5787850151600019600388901b60f8161c191681555b5050505050", - "600190811b0190555056fea164736f6c6343000815000a000000000000000000" - ], - "op": "PUSH1", - "pc": 829, - "stack": [ - "0x2f7" - ] - }, - { - "depth": 1, - "gas": 151800, - "gasCost": 0, - "memory": [ - "608060405234801561001057600080fd5b50600436106100415760003560e01c", - "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", - "575b600080fd5b61004e610058565b005b61004e6100d5565b6101c860006040", - "51610076906561626331323360d01b815260060190565b908152602001604051", - "809103902081905550604051806040016040528060018152602001606360f81b", - "81525060016040516100b890603160f91b815260010190565b90815260200160", - "4051809103902090816100d2919061022a565b50565b6102a660006040516100", - "f3906561626331323360d01b815260060190565b908152604051908190036020", - "018120919091557312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b81", - "5260069060009060140190815260405190819003602001812091909155604160", - "f81b815260649060009060010190815260405190819003602001812091909155", - "6a32b9b1b0b832ba3434b99160a91b8152606490600090600b01908152604051", - "90819003602001902055565b634e487b7160e01b600052604160045260246000", - "fd5b600181811c908216806101b557607f821691505b6020821081036101d557", - "634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211", - "1561022557600081815260208120601f850160051c8101602086101561020257", - "50805b601f850160051c820191505b818110156102215782815560010161020e", - "565b5050505b505050565b815167ffffffffffffffff81111561024457610244", - "61018b565b6102588161025284546101a1565b846101db565b602080601f8311", - "6001811461028d57600084156102755750858301515b600019600386901b1c19", - "16600185901b178555610221565b600085815260208120601f198616915b8281", - "10156102bc5788860151825594840194600190910190840161029d565b508582", - "10156102da5787850151600019600388901b60f8161c191681555b5050505050", - "600190811b0190555056fea164736f6c6343000815000a000000000000000000" - ], - "op": "RETURN", - "pc": 831, - "stack": [ - "0x2f7", - "0x0" - ] - } - ] - }, - "address": "0x8a791620dd6260079bf849dc5567adc3f2fdc318", - "tx_id": "0x71bc3c322a17dd2274dfd42ba0274ef4e7508bfdaaa96c41c02c09b93ef72b75" -} \ No newline at end of file diff --git a/tests/data/trace_StructInMapping.json b/tests/data/trace_StructInMapping.json deleted file mode 100644 index e47ef627..00000000 --- a/tests/data/trace_StructInMapping.json +++ /dev/null @@ -1,5249 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x2fa3b", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 137861, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 137858, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 137855, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 137843, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 137841, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 137838, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 137835, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 137832, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 11, - "stack": [ - "0x0", - "0x1", - "0x10" - ] - }, - { - "depth": 1, - "gas": 137822, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 137821, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 137819, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADDRESS", - "pc": 18, - "stack": [] - }, - { - "depth": 1, - "gas": 137817, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 19, - "stack": [ - "0x610178da211fef7d417bc0e6fed39f05609ad788" - ] - }, - { - "depth": 1, - "gas": 137814, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 21, - "stack": [ - "0x610178da211fef7d417bc0e6fed39f05609ad788", - "0x0" - ] - }, - { - "depth": 1, - "gas": 137811, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 22, - "stack": [ - "0x0", - "0x610178da211fef7d417bc0e6fed39f05609ad788" - ] - }, - { - "depth": 1, - "gas": 137808, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 23, - "stack": [ - "0x0", - "0x610178da211fef7d417bc0e6fed39f05609ad788", - "0x0" - ] - }, - { - "depth": 1, - "gas": 137805, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 24, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 137802, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 26, - "stack": [ - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 137799, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 27, - "stack": [ - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 137796, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 28, - "stack": [ - "0x0", - "0x20", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 137793, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 29, - "stack": [ - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 137790, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 31, - "stack": [ - "0x0", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 137787, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP4", - "pc": 32, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 137784, - "gasCost": 42, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "KECCAK256", - "pc": 33, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 137742, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH17", - "pc": 34, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0" - ] - }, - { - "depth": 1, - "gas": 137739, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 52, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x2a00000000000000000000000000000001" - ] - }, - { - "depth": 1, - "gas": 137736, - "gasCost": 22100, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 53, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x2a00000000000000000000000000000001", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0" - ] - }, - { - "depth": 1, - "gas": 115636, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", - "pc": 54, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0" - ] - }, - { - "depth": 1, - "gas": 115633, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", - "pc": 55, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 115630, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 56, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 115627, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 58, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60" - ] - }, - { - "depth": 1, - "gas": 115624, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP3", - "pc": 59, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x60" - ] - }, - { - "depth": 1, - "gas": 115621, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", - "pc": 60, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x60", - "0x80" - ] - }, - { - "depth": 1, - "gas": 115618, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP5", - "pc": 61, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 115615, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", - "pc": 62, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xe0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 115612, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "op": "PUSH1", - "pc": 63, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60" - ] - }, - { - "depth": 1, - "gas": 115609, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "op": "DUP3", - "pc": 65, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x17" - ] - }, - { - "depth": 1, - "gas": 115606, - "gasCost": 9, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 66, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x17", - "0x80" - ] - }, - { - "depth": 1, - "gas": 115597, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "PUSH20", - "pc": 67, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60" - ] - }, - { - "depth": 1, - "gas": 115594, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "DUP3", - "pc": 88, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 115591, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "DUP7", - "pc": 89, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x80" - ] - }, - { - "depth": 1, - "gas": 115588, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "ADD", - "pc": 90, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x80", - "0x20" - ] - }, - { - "depth": 1, - "gas": 115585, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "SWAP1", - "pc": 91, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 115582, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017" - ], - "op": "DUP2", - "pc": 92, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 115579, - "gasCost": 6, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 93, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 115573, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ], - "op": "DUP3", - "pc": 94, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 115570, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ], - "op": "DUP6", - "pc": 95, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 115567, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ], - "op": "ADD", - "pc": 96, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 115564, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ], - "op": "DUP8", - "pc": 97, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 115561, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ], - "op": "DUP2", - "pc": 98, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 115558, - "gasCost": 6, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 99, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 115552, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 100, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 115549, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 102, - "stack": [ - "0x0", - "0x20", - "0x40", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 115546, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 103, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0" - ] - }, - { - "depth": 1, - "gas": 115543, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 104, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 115540, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 105, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 115537, - "gasCost": 2100, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 106, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 113437, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 107, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 113434, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 108, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 113431, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 109, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 113428, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 110, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 113425, - "gasCost": 20000, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 111, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x1", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 93425, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 112, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93422, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP11", - "pc": 113, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 93419, - "gasCost": 3, - "memory": [ - "000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad788", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 114, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93416, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 115, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93413, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP11", - "pc": 116, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 93410, - "gasCost": 36, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 117, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93374, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP6", - "pc": 118, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x80", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 93371, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 119, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x80" - ] - }, - { - "depth": 1, - "gas": 93368, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 120, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x17" - ] - }, - { - "depth": 1, - "gas": 93365, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 122, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0", - "0x17", - "0x2" - ] - }, - { - "depth": 1, - "gas": 93362, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 123, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93359, - "gasCost": 5, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 124, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x17", - "0x0", - "0x2" - ] - }, - { - "depth": 1, - "gas": 93354, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 125, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x17", - "0x0" - ] - }, - { - "depth": 1, - "gas": 93351, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 126, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x17", - "0x0", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 93348, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 127, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x17", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 93345, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 128, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x17" - ] - }, - { - "depth": 1, - "gas": 93342, - "gasCost": 22100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 129, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x17", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 71242, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP4", - "pc": 130, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xa0", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 71239, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 131, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 71236, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP4", - "pc": 132, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 71233, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 133, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 71230, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 134, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x1" - ] - }, - { - "depth": 1, - "gas": 71227, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 135, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32" - ] - }, - { - "depth": 1, - "gas": 71224, - "gasCost": 2100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 136, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32" - ] - }, - { - "depth": 1, - "gas": 69124, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP4", - "pc": 137, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xc0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69121, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 138, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 69118, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 139, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69115, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 140, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69112, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 141, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69109, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 143, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69106, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 145, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 69103, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 146, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x0", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69100, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 147, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69097, - "gasCost": 5, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MUL", - "pc": 148, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69092, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 149, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69089, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 151, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69086, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 153, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69083, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 155, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1", - "0xa8" - ] - }, - { - "depth": 1, - "gas": 69080, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 156, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x1", - "0x1000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69077, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 157, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 69074, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP6", - "pc": 158, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x0", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69071, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 159, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69068, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 160, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69065, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 161, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 69062, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 163, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69059, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 165, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 69056, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 167, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 69053, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 168, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69050, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP8", - "pc": 169, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 69047, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 170, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 69044, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 171, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 69041, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 172, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 69038, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 173, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 69035, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 174, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x10000000000000000000000000000000000000000", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad" - ] - }, - { - "depth": 1, - "gas": 69032, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 175, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 69029, - "gasCost": 20000, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 176, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c32" - ] - }, - { - "depth": 1, - "gas": 49029, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP11", - "pc": 177, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 49026, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP11", - "pc": 178, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 49023, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 179, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 49020, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 180, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 49017, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 181, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x40" - ] - }, - { - "depth": 1, - "gas": 49014, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP6", - "pc": 182, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x60", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 49011, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 183, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x60" - ] - }, - { - "depth": 1, - "gas": 49008, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 184, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x60", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 49005, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP10", - "pc": 185, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x140" - ] - }, - { - "depth": 1, - "gas": 49002, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 186, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x140", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48999, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 187, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 48996, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 189, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x7b" - ] - }, - { - "depth": 1, - "gas": 48993, - "gasCost": 6, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 190, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000", - "0x7b", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 48987, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "op": "SWAP9", - "pc": 191, - "stack": [ - "0x0", - "0x20", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 48984, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "op": "DUP6", - "pc": 192, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x20" - ] - }, - { - "depth": 1, - "gas": 48981, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "op": "ADD", - "pc": 193, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x20", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 48978, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "op": "DUP11", - "pc": 194, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x100" - ] - }, - { - "depth": 1, - "gas": 48975, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "op": "DUP2", - "pc": 195, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x100", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48972, - "gasCost": 6, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 196, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x100", - "0x0", - "0x100" - ] - }, - { - "depth": 1, - "gas": 48966, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP8", - "pc": 197, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x40", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x100" - ] - }, - { - "depth": 1, - "gas": 48963, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 198, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x40" - ] - }, - { - "depth": 1, - "gas": 48960, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 199, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x40", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 48957, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 200, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120" - ] - }, - { - "depth": 1, - "gas": 48954, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 201, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48951, - "gasCost": 6, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 202, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1", - "0x120" - ] - }, - { - "depth": 1, - "gas": 48945, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 203, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120" - ] - }, - { - "depth": 1, - "gas": 48942, - "gasCost": 100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SLOAD", - "pc": 204, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 48842, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP1", - "pc": 205, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48839, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP10", - "pc": 206, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48836, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 207, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48833, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP5", - "pc": 208, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 48830, - "gasCost": 100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SSTORE", - "pc": 209, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1", - "0x2", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 48730, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP3", - "pc": 210, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x2", - "0x120", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48727, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 211, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x2", - "0x120", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1" - ] - }, - { - "depth": 1, - "gas": 48724, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP11", - "pc": 212, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x2", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x120" - ] - }, - { - "depth": 1, - "gas": 48721, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MSTORE", - "pc": 213, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x2", - "0xbdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 48718, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP4", - "pc": 214, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0xe0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 48715, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MLOAD", - "pc": 215, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 48712, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP4", - "pc": 216, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x2", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x7b" - ] - }, - { - "depth": 1, - "gas": 48709, - "gasCost": 5, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MUL", - "pc": 217, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x7b", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x2" - ] - }, - { - "depth": 1, - "gas": 48704, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 218, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x7b", - "0xffffffffffffffffffffffffffffffffffffffff", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x2" - ] - }, - { - "depth": 1, - "gas": 48701, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP4", - "pc": 219, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31", - "0x7b", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x2", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 48698, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 220, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x7b", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x2", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c31" - ] - }, - { - "depth": 1, - "gas": 48695, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 221, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x7b", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33" - ] - }, - { - "depth": 1, - "gas": 48692, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP3", - "pc": 222, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x7b" - ] - }, - { - "depth": 1, - "gas": 48689, - "gasCost": 22100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SSTORE", - "pc": 223, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x7b", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33" - ] - }, - { - "depth": 1, - "gas": 26589, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP4", - "pc": 224, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0x100", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 26586, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MLOAD", - "pc": 225, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0x100" - ] - }, - { - "depth": 1, - "gas": 26583, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP3", - "pc": 226, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x1", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0x0" - ] - }, - { - "depth": 1, - "gas": 26580, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ADD", - "pc": 227, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c33", - "0x1" - ] - }, - { - "depth": 1, - "gas": 26577, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP1", - "pc": 228, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34" - ] - }, - { - "depth": 1, - "gas": 26574, - "gasCost": 2100, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SLOAD", - "pc": 229, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34" - ] - }, - { - "depth": 1, - "gas": 24474, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP6", - "pc": 230, - "stack": [ - "0x120", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24471, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MLOAD", - "pc": 231, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x120" - ] - }, - { - "depth": 1, - "gas": 24468, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ISZERO", - "pc": 232, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24465, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "ISZERO", - "pc": 233, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24462, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 234, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24459, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP5", - "pc": 235, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34" - ] - }, - { - "depth": 1, - "gas": 24456, - "gasCost": 5, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "MUL", - "pc": 236, - "stack": [ - "0x0", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24451, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP5", - "pc": 237, - "stack": [ - "0x0", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24448, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "AND", - "pc": 238, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0xffffffffffffffffffffff000000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24445, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 239, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24442, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "AND", - "pc": 240, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 24439, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "OR", - "pc": 241, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24436, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 242, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24433, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 243, - "stack": [ - "0x0", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24430, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP2", - "pc": 244, - "stack": [ - "0x0", - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34" - ] - }, - { - "depth": 1, - "gas": 24427, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "OR", - "pc": 245, - "stack": [ - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x10000000000000000000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24424, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SWAP1", - "pc": 246, - "stack": [ - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24421, - "gasCost": 20000, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "SSTORE", - "pc": 247, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x42282cb97f9321ce3af58e0e24b033b8e626d34ab4c1176a9c222f81d51e8c34" - ] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 248, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "DUP1", - "pc": 250, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH2", - "pc": 251, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 254, - "stack": [ - "0x16", - "0x16", - "0x105" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "bdef9594e0de4a67b8ece76532e6cc04cc26a4451f475b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "CODECOPY", - "pc": 256, - "stack": [ - "0x16", - "0x16", - "0x105", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a5b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "PUSH1", - "pc": 257, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a5b42a9855b1e1a9114f1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", - "0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "op": "RETURN", - "pc": 259, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0x610178da211fef7d417bc0e6fed39f05609ad788", - "tx_id": "0x4d5fcca2268f5cf29e47485cbe37b73138c8dfb9828dac66920b432bfddc8bb0" -} \ No newline at end of file diff --git a/tests/data/trace_StructInStruct.json b/tests/data/trace_StructInStruct.json deleted file mode 100644 index 5292402c..00000000 --- a/tests/data/trace_StructInStruct.json +++ /dev/null @@ -1,812 +0,0 @@ -{ - "trace": { - "failed": false, - "gas": "0x240cf", - "returnValue": "0x6080604052600080fdfea164736f6c6343000815000a", - "structLogs": [ - { - "depth": 1, - "gas": 92947, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 0, - "stack": [] - }, - { - "depth": 1, - "gas": 92944, - "gasCost": 3, - "memory": [], - "op": "PUSH1", - "pc": 2, - "stack": [ - "0x80" - ] - }, - { - "depth": 1, - "gas": 92941, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 4, - "stack": [ - "0x80", - "0x40" - ] - }, - { - "depth": 1, - "gas": 92929, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] - }, - { - "depth": 1, - "gas": 92927, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 92924, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", - "pc": 7, - "stack": [ - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 92921, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 8, - "stack": [ - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 92918, - "gasCost": 10, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", - "pc": 10, - "stack": [ - "0x0", - "0x1", - "0xf" - ] - }, - { - "depth": 1, - "gas": 92908, - "gasCost": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 15, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 92907, - "gasCost": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 16, - "stack": [ - "0x0" - ] - }, - { - "depth": 1, - "gas": 92905, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 17, - "stack": [] - }, - { - "depth": 1, - "gas": 92902, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 20, - "stack": [ - "0x29a" - ] - }, - { - "depth": 1, - "gas": 92899, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 22, - "stack": [ - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 70799, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 23, - "stack": [] - }, - { - "depth": 1, - "gas": 70796, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 25, - "stack": [ - "0x1" - ] - }, - { - "depth": 1, - "gas": 70793, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 26, - "stack": [ - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68693, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 27, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68690, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 29, - "stack": [ - "0x1", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68687, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 31, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 68684, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 33, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 68681, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SUB", - "pc": 34, - "stack": [ - "0x1", - "0x0", - "0x1", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 68678, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 35, - "stack": [ - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 68675, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 36, - "stack": [ - "0x1", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 68672, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH13", - "pc": 37, - "stack": [ - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 68669, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 51, - "stack": [ - "0x1", - "0x0", - "0xadc04c56bf30ac9d3c0aaf14dc" - ] - }, - { - "depth": 1, - "gas": 68666, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 52, - "stack": [ - "0x1", - "0xadc04c56bf30ac9d3c0aaf14dc" - ] - }, - { - "depth": 1, - "gas": 68663, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 53, - "stack": [ - "0xadc04c56bf30ac9d3c0aaf14dc", - "0x1" - ] - }, - { - "depth": 1, - "gas": 48663, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 54, - "stack": [] - }, - { - "depth": 1, - "gas": 48660, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 56, - "stack": [ - "0x7b" - ] - }, - { - "depth": 1, - "gas": 48657, - "gasCost": 22100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 58, - "stack": [ - "0x7b", - "0x2" - ] - }, - { - "depth": 1, - "gas": 26557, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 59, - "stack": [] - }, - { - "depth": 1, - "gas": 26554, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 61, - "stack": [ - "0x3" - ] - }, - { - "depth": 1, - "gas": 26551, - "gasCost": 2100, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SLOAD", - "pc": 62, - "stack": [ - "0x3", - "0x3" - ] - }, - { - "depth": 1, - "gas": 24451, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 63, - "stack": [ - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24448, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 65, - "stack": [ - "0x3", - "0x0", - "0xff" - ] - }, - { - "depth": 1, - "gas": 24445, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 67, - "stack": [ - "0x3", - "0x0", - "0xff", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 24442, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "NOT", - "pc": 68, - "stack": [ - "0x3", - "0x0", - "0xff0000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24439, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "AND", - "pc": 69, - "stack": [ - "0x3", - "0x0", - "0xffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 24436, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 70, - "stack": [ - "0x3", - "0x0" - ] - }, - { - "depth": 1, - "gas": 24433, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 72, - "stack": [ - "0x3", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 24430, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SHL", - "pc": 74, - "stack": [ - "0x3", - "0x0", - "0x1", - "0xa0" - ] - }, - { - "depth": 1, - "gas": 24427, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "OR", - "pc": 75, - "stack": [ - "0x3", - "0x0", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24424, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", - "pc": 76, - "stack": [ - "0x3", - "0x10000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 24421, - "gasCost": 20000, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SSTORE", - "pc": 77, - "stack": [ - "0x10000000000000000000000000000000000000000", - "0x3" - ] - }, - { - "depth": 1, - "gas": 4421, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 78, - "stack": [] - }, - { - "depth": 1, - "gas": 4418, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 80, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4415, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 81, - "stack": [ - "0x16", - "0x16" - ] - }, - { - "depth": 1, - "gas": 4412, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 83, - "stack": [ - "0x16", - "0x16", - "0x5a" - ] - }, - { - "depth": 1, - "gas": 4409, - "gasCost": 6, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CODECOPY", - "pc": 85, - "stack": [ - "0x16", - "0x16", - "0x5a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 4403, - "gasCost": 3, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 86, - "stack": [ - "0x16" - ] - }, - { - "depth": 1, - "gas": 4400, - "gasCost": 0, - "memory": [ - "6080604052600080fdfea164736f6c6343000815000a00000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "RETURN", - "pc": 88, - "stack": [ - "0x16", - "0x0" - ] - } - ] - }, - "address": "0xb7f8bc63bbcad18155201308c8f3540b07f84f5e", - "tx_id": "0xc907b7fddb8a27d496d54367a8ee35c66de30de94b9e8aff26e23c8a378eb2e1" -} \ No newline at end of file diff --git a/tests/test_decoding.rs b/tests/test_decoding.rs deleted file mode 100644 index 5c69a49b..00000000 --- a/tests/test_decoding.rs +++ /dev/null @@ -1,450 +0,0 @@ -#[cfg(test)] - -mod tests { - use std::fs; - use std::path::{Path, PathBuf}; - - use dvf_libs::bytecode_verification::parse_json::{Environment, ProjectInfo}; - use dvf_libs::dvf::config::DVFConfig; - use dvf_libs::dvf::parse::DVFStorageEntry; - use dvf_libs::state::contract_state::ContractState; - use dvf_libs::state::forge_inspect; - use dvf_libs::utils::pretty::PrettyPrinter; - use dvf_libs::web3::{IntermediateTraceWithAddress, StorageSnapshot, TraceWithAddress}; - use prettytable::Table; - - fn generate_results( - contract_name: &str, - snapshot: &mut StorageSnapshot, - trace_w_a: &TraceWithAddress, - ) -> Vec { - let mut empty_config = DVFConfig::default(); - empty_config.set_chain_id(1).unwrap(); - let project_info = ProjectInfo::new( - &String::from(contract_name), - PathBuf::from("tests/Contracts").as_path(), - Environment::Foundry, - PathBuf::from("").as_path(), - None, - None, - ) - .unwrap(); - let pretty_printer = PrettyPrinter::new(&empty_config, None); - let mut global_state = ContractState::new_with_address(&trace_w_a.address, &pretty_printer); - let fi_layout = forge_inspect::ForgeInspectLayoutStorage::generate_and_parse_layout( - Path::new("tests/Contracts"), - contract_name, - None, - ); - let fi_ir = forge_inspect::ForgeInspectIrOptimized::generate_and_parse_ir_optimized( - Path::new("tests/Contracts"), - contract_name, - None, - ); - global_state.add_forge_inspect(&fi_layout, &fi_ir); - global_state - .record_traces(&empty_config, vec![trace_w_a.clone()]) - .unwrap(); - let mut table = Table::new(); - - global_state - .get_critical_storage_variables( - snapshot, - &mut table, - &project_info.storage, - &project_info.types, - true, - ) - .unwrap() - } - - #[test] - fn test_expected_results() { - for contract_name in [ - "BytesMapping", - "CrazyStruct", - "DynamicArrayOfStaticArray", - "Enum", - "NestedMapping", - "StaticArray", - "StaticArrayOfDynamicArray", - "StaticArrayOfStaticArray", - "StaticArrayOfStruct", - "StaticInMapping", - "StringMapping", - "StructInMapping", - "StructInStruct", - ] { - let path = format!("./tests/data/trace_{}.json", contract_name); - println!("Reading {}", path); - let trace_str = fs::read_to_string(&path).unwrap(); - let trace_w_a: IntermediateTraceWithAddress = serde_json::from_str(&trace_str).unwrap(); - let trace_w_a: TraceWithAddress = trace_w_a.into(); - - let empty_config = DVFConfig::default(); - let mut snapshot = - StorageSnapshot::from_trace(&empty_config, &trace_w_a.address, &trace_w_a).unwrap(); - let generated_result = generate_results(contract_name, &mut snapshot, &trace_w_a); - - let res_str = - fs::read_to_string(format!("./tests/data/result_{}.json", contract_name)).unwrap(); - let mut expected_result: Vec = serde_json::from_str(&res_str).unwrap(); - expected_result.sort_by_key(|exp| exp.slot); - - assert_eq!(generated_result.len(), expected_result.len()); - for i in 0..generated_result.len() { - assert_eq!(generated_result[i], expected_result[i]); - } - } - } - - /* - - #[test] - fn test_struct_in_struct() { - let contract_name = "StructInStruct"; - - let names = vec![ - "StructInStruct[0]", - "StructInStruct[1]", - "StructInStruct[2]", - "StructInStruct[3]", - ]; - - let expected_result: Vec> = vec![ - vec![( - "StructInStruct.a", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![( - "StructInStruct.b", - "0x3333333344444444555555556666666677777777", - 0, - )], - vec![( - "StructInStruct.t.A", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ( - "StructInStruct.t.B", - "0x3333333344444444555555556666666677777777", - 0, - ), - ("StructInStruct.t.C", "0x22", 20), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_static_mapping() { - let contract_name = "StaticInMapping"; - - let names = vec![ - "static_in_mapping[000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX]", - "static_in_mapping[000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][1]", - ]; - - let expected_result : Vec> = vec![ - vec![("static_in_mapping[0x000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][0]", "0x44444444555555556666666677777777", 0), ("static_in_mapping[0x000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][1]", "0x00000000111111112222222233333333", 16)], - vec![("static_in_mapping[0x000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][2]", "0x44444444555555556666666677777777", 0)], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_static_array_of_struct() { - let contract_name = "StaticArrayOfStruct"; - - let names = vec![ - "static_array_of_struct", - "static_array_of_struct[1]", - "static_array_of_struct[2]", - "static_array_of_struct[3]", - ]; - - let expected_result: Vec> = vec![ - vec![( - "static_array_of_struct[0].A", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ( - "static_array_of_struct[0].B", - "0x3333333344444444555555556666666677777777", - 0, - ), - ("static_array_of_struct[0].C", "0x22", 20), - ], - vec![( - "static_array_of_struct[1].A", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ( - "static_array_of_struct[1].B", - "0x3333333344444444555555556666666677777777", - 0, - ), - ("static_array_of_struct[1].C", "0x22", 20), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_static_array_of_static_array() { - let contract_name = "StaticArrayOfStaticArray"; - - let names = vec![ - "StaticStatic", - "StaticStatic[1]", - "StaticStatic[2]", - "StaticStatic[3]", - ]; - - let expected_result: Vec> = vec![ - vec![ - ("StaticStatic[0][0]", "0x6666666677777777", 0), - ("StaticStatic[0][1]", "0x4444444455555555", 8), - ("StaticStatic[0][2]", "0x2222222233333333", 16), - ("StaticStatic[0][3]", "0x0000000011111111", 24), - ], - vec![ - ("StaticStatic[0][4]", "0x6666666677777777", 0), - ("StaticStatic[0][5]", "0x4444444455555555", 8), - ], - vec![ - ("StaticStatic[1][0]", "0x6666666677777777", 0), - ("StaticStatic[1][1]", "0x4444444455555555", 8), - ("StaticStatic[1][2]", "0x2222222233333333", 16), - ("StaticStatic[1][3]", "0x0000000011111111", 24), - ], - vec![ - ("StaticStatic[1][4]", "0x6666666677777777", 0), - ("StaticStatic[1][5]", "0x4444444455555555", 8), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_static_array_of_dynamic_array() { - let contract_name = "StaticArrayOfDynamicArray"; - - let names = vec![ - "StaticDynamic", - "StaticDynamic[1]", - "StaticDynamic[2]", - "StaticDynamic[0][0]", - "StaticDynamic[1][10]", - ]; - - let expected_result: Vec> = vec![ - vec![( - "StaticDynamic[0].length", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![( - "StaticDynamic[1].length", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![( - "StaticDynamic[2].length", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ( - "StaticDynamic[0][0]", - "0x44444444555555556666666677777777", - 0, - ), - ( - "StaticDynamic[0][1]", - "0x00000000111111112222222233333333", - 16, - ), - ], - vec![ - ( - "StaticDynamic[1][20]", - "0x44444444555555556666666677777777", - 0, - ), - ( - "StaticDynamic[1][21]", - "0x00000000111111112222222233333333", - 16, - ), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_static_array() { - let contract_name = "StaticArray"; - - let names = vec!["Static", "Static[1]"]; - - let expected_result: Vec> = vec![ - vec![ - ("Static[0]", "0x6666666677777777", 0), - ("Static[1]", "0x4444444455555555", 8), - ("Static[2]", "0x2222222233333333", 16), - ("Static[3]", "0x0000000011111111", 24), - ], - vec![ - ("Static[4]", "0x6666666677777777", 0), - ("Static[5]", "0x4444444455555555", 8), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_nested_mapping() { - let contract_name = "NestedMapping"; - - let names = - vec!["mp[AAAAAAAADDDDDDDDRRRRRRRRXXXXXXXX1][AAAAAAAADDDDDDDDRRRRRRRRXXXXXXXX2]"]; - - let expected_result: Vec> = vec![vec![( - "mp[0xAAAAAAAADDDDDDDDRRRRRRRRXXXXXXXX1][0xAAAAAAAADDDDDDDDRRRRRRRRXXXXXXXX2]", - "0x44444444555555556666666677777777", - 0, - )]]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_dynamic_array_of_static_array() { - let contract_name = "DynamicArrayOfStaticArray"; - - let names = vec![ - "DynamicStatic", - "DynamicStatic[0]", - "DynamicStatic[1]", - "DynamicStatic[2]", - ]; - - let expected_result: Vec> = vec![ - vec![( - "DynamicStatic.length", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ("DynamicStatic[0][0]", "0x6666666677777777", 0), - ("DynamicStatic[0][1]", "0x4444444455555555", 8), - ("DynamicStatic[0][2]", "0x2222222233333333", 16), - ("DynamicStatic[0][3]", "0x0000000011111111", 24), - ], - vec![ - ("DynamicStatic[0][4]", "0x6666666677777777", 0), - ("DynamicStatic[0][5]", "0x4444444455555555", 8), - ], - vec![ - ("DynamicStatic[1][0]", "0x6666666677777777", 0), - ("DynamicStatic[1][1]", "0x4444444455555555", 8), - ("DynamicStatic[1][2]", "0x2222222233333333", 16), - ("DynamicStatic[1][3]", "0x0000000011111111", 24), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - - #[test] - fn test_crazy_struct() { - let contract_name = "CrazyStruct"; - - let names = vec![ - "CrazyStruct", - "CrazyStruct[1]", - "CrazyStruct[2]", - "CrazyStruct[3]", - "CrazyStruct[4]", - "CrazyStruct[5][000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][2]", - "CrazyStruct[6]", - "CrazyStruct[6][2]", - ]; - - let expected_result: Vec> = vec![ - vec![( - "CrazyStruct.A", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ( - "CrazyStruct.B", - "0x3333333344444444555555556666666677777777", - 0, - ), - ("CrazyStruct.C", "0x22", 20), - ], - vec![ - ("CrazyStruct.D[0]", "0x6666666677777777", 0), - ("CrazyStruct.D[1]", "0x4444444455555555", 8), - ("CrazyStruct.D[2]", "0x2222222233333333", 16), - ("CrazyStruct.D[3]", "0x0000000011111111", 24), - ], - vec![ - ("CrazyStruct.D[4]", "0x6666666677777777", 0), - ("CrazyStruct.D[5]", "0x4444444455555555", 8), - ], - vec![("CrazyStruct.E", "0x44444444555555556666666677777777", 0)], - vec![( - "CrazyStruct.mp[0x000000000000000000000000AAAAAAAAAADDDDDDDDDDRRRRRRRRRRXXXXXXXXXX][0x2]", - "0x77", - 0, - )], - vec![( - "CrazyStruct.F.length", - "0x0000000011111111222222223333333344444444555555556666666677777777", - 0, - )], - vec![ - ("CrazyStruct.F[4]", "0x44444444555555556666666677777777", 0), - ("CrazyStruct.F[5]", "0x00000000111111112222222233333333", 16), - ], - ]; - - let generated_result = generate_results(contract_name, names); - - assert!(generated_result == convert_slice_to_string(expected_result)); - } - */ -} diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index 12b0263d..16bde97b 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -788,12 +788,62 @@ mod tests { let mut testcases: Vec = vec![]; + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_Lib.s.sol"), + contract: String::from("Lib"), + expected: String::from("tests/expected_dvfs/Lib.dvf.json"), + }); + testcases.push(TestCaseE2E { script: String::from("script/Deploy_StaticInMapping.s.sol"), contract: String::from("StaticInMapping"), expected: String::from("tests/expected_dvfs/StaticInMapping.dvf.json"), }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_0.s.sol"), + contract: String::from("BytesMapping"), + expected: String::from("tests/expected_dvfs/Deploy_0.dvf.json"), + }); + + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_1.s.sol"), + contract: String::from("StringMapping"), + expected: String::from("tests/expected_dvfs/Deploy_1.dvf.json"), + }); + + // testcases.push(TestCaseE2E { + // script: String::from("script/Deploy_2.s.sol"), + // contract: String::from("CrazyStruct"), + // expected: String::from("tests/expected_dvfs/Deploy_2.dvf.json"), + // }); + + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_3.s.sol"), + contract: String::from("StructInEvent"), + expected: String::from("tests/expected_dvfs/Deploy_3.dvf.json"), + }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_4.s.sol"), + contract: String::from("StaticArrayOfDynamicArray"), + expected: String::from("tests/expected_dvfs/Deploy_4.dvf.json"), + }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_5.s.sol"), + contract: String::from("NestedMapping"), + expected: String::from("tests/expected_dvfs/Deploy_5.dvf.json"), + }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_AllValueTypes.s.sol"), + contract: String::from("AllValueTypes"), + expected: String::from("tests/expected_dvfs/AllValueTypes.dvf.json"), + }); + testcases.push(TestCaseE2E { + script: String::from("script/Deploy_CrazyHiddenStruct.s.sol"), + contract: String::from("CrazyHiddenStruct"), + expected: String::from("tests/expected_dvfs/CrazyHiddenStruct.dvf.json"), + }); + for testcase in testcases { let url = format!("http://localhost:{}", port).to_string(); for client_type in LocalClientType::iterator() {